Skip to content

Instantly share code, notes, and snippets.

@ringmaster
Created April 16, 2012 14:28
Show Gist options
  • Save ringmaster/2399140 to your computer and use it in GitHub Desktop.
Save ringmaster/2399140 to your computer and use it in GitHub Desktop.
$('.todo').live('keypress', function(ev){
create = _.reduce($('.todo'), function(memo, el) {
return memo && $(el).val() != '';
}, true);
if(create) {
$('#todolist').append(ich.t_todoitem({}));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment