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 ******

To Do List

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('

  • ' + toDoNewText + '
  • '); $('#toDoNewId').val(""); } });

    styles.css *************

    Step by Step Solution

    There are 3 Steps involved in it

    1 Expert Approved Answer
    Step: 1 Unlock blur-text-image
    Question Has Been Solved by an Expert!

    Get step-by-step solutions from verified subject matter experts

    Step: 2 Unlock
    Step: 3 Unlock

    Students Have Also Explored These Related Databases Questions!