Skip to content

Instantly share code, notes, and snippets.

@StephenFiser
Created May 26, 2014 03:39
Show Gist options
  • Select an option

  • Save StephenFiser/24701de018f3b1347c8d to your computer and use it in GitHub Desktop.

Select an option

Save StephenFiser/24701de018f3b1347c8d to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$('#new-to-do-item').keyup(function(e) {
if (e.which === 13) {
var text = $(this).val();
var listItem = "<li><input type='checkbox'>" + text + "</li>"
$('ul').append(listItem);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment