Skip to content

Instantly share code, notes, and snippets.

@efleming969
Created October 18, 2013 19:44
Show Gist options
  • Select an option

  • Save efleming969/7047054 to your computer and use it in GitHub Desktop.

Select an option

Save efleming969/7047054 to your computer and use it in GitHub Desktop.
<!doctype html>
<h1>Todo List</h1>
<select id="tasks-filter">
<option value=0>All</option>
<option value=1>Incomplete</option>
<option value=2>Complete</option>
</select>
<ul id="tasks-list"></ul>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>
<script src="/index.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment