jquery need help with the option to edit the items on to do list program either an o 5152323
JQuery- need help with the option to Edit the items on To-Do list program…either an option for edit button or double clicking the item will enable user to edit the list
To-Do List
To-Do List
i class=”fas fa-trash”> Build An Todo List
save< /button> (“ul”).on(“click”, “li”,function () 5 $(this).toggleclass (“completed”); 6 7 8 /click on X to delete a Todo 10 (“ul”).on(“click”, “span”, function (event) 11 12 $(this).parent ( ) . fadeOut (100, function () 13 14 $(this).remove () ; }); event.stopPropagation(); 15 16 17 18 19 20 21 V 22$(“.display”) . click(function () { $(this).hide().siblings(“.edit”).show().val($(this).text()).focus (); 23 24 25 26 C”input[type='text']”).keypress (function (event) 27 28 if (event.which=== 13) 29 30 $(this).val); var todo Text = 31 $(this).val $ (“ul”).append (”
“) 32 33 34 35 36 37