Skip to content

Instantly share code, notes, and snippets.

@pankajpatel
Last active October 24, 2015 10:03
Show Gist options
  • Save pankajpatel/e16920561b651c62a6ed to your computer and use it in GitHub Desktop.
Save pankajpatel/e16920561b651c62a6ed to your computer and use it in GitHub Desktop.
Parse ToDo
<div id="main">
<h1>ToDo</h1>
<section>
<div class="input-container">
<input type="text" name="task" id="task" placeholder="Todo Task"/>
</div>
<div class="button-container">
<button type="button" name="saveTask" id="saveTask">Save Task</button>
</div>
</section>
<section>
<ul id="taskList">
</ul>
</section>
<section>
<p>
Completed Tasks
</p>
<ul id="completedTaskList">
</ul>
</section>
<div style="display:none" class="error">
<p>Looks like there was a problem saving the task</p>
</div>
<div style="display:none" class="success">
<p>Saved</p>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment