javascript - Shopping list app not adding ,clearing and removing items -


[1]hello,

i trying create shopping list app i've been troubleshooting , still not working .i dont know wrong code???

here html, css , jquery code in jsfiddle :[shopping list code][1]

       [1]: http://jsfiddle.net/rizabarone/hp01kahn/ 

your code missing });

$(function () {     var add = $('#additem');     var newitem = $('#newitem');     var list = $('#itemlist');      add.on('click', addlistitem);     list.on('click', '.checkbox', tickitem);     list.on('click', '.delete', deleteitem);     newitem.on('keypress', function (e) {         if (e.which == 13) {             addlistitem();         }     }); }); // <--------------------- here 

Comments

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -