Question: im making this website and javascript isnt working when i go to add something to the list idk if im not doing something right or
im making this website and javascript isnt working when i go to add something to the list
idk if im not doing something right or not having something in the folder that has all my files can some help me out
code is below:
html ******
Todo
file.js ******
$(document).ready(function(){ document.getElementById("itemAddId").innerHTML $('#itemAddId').on('click', itemAddId); $('#listOftoDoIds').on('change', '.itemCompleteId', itemCompleteId); $('#listOftoDoIds').on('click', '.itemDeleteId', itemDeleteId); function itemCompleteId(event){ $(this).parent().toggleClass('toggleDoneClass'); } function itemDeleteId(event){ $(this).parent().remove(); } function itemAddId(event){ var toDoNewText = $('#toDoNewId').val(); $('#listOftoDoIds').append('
styles.css *************
