Todo list project Doubt

Sir my items are not updating in the list , Please also let me the mistake I am doing the program

https://drive.google.com/drive/folders/1RsE114M51fcegG7PUzYji4zOb-w_ojqr?usp=sharing

There were many changes:

  1. Use these in script tags instead of what you were using and you didn’t include jquery tag:
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script defer src="script.js"></script>
  1. Use id of buttons in wrong place add ids like this:
    <button class="btn btn-success col m-2" id='btnAdd'>ADD</button>
    <button class="btn btn-danger col m-2" id='btnClear'>CLEAR</button>
  1. Div and input have same ids, change it to:
<input type="text"
                class="form-control"
                id="InpNewTask"
                aria-describedby="NewTaskHelp"
                placeholder="Enter the name of the task"
              />
              <div id="InpNewTaskDiv" class="form-text">
                A short one line discription of you task
              </div>
  1. Wrong spelling of $(’#InpNewTask’) change it to:

let inpNewTask = $(’#InpNewTask’)

Correct code link: https://drive.google.com/drive/folders/1ytdpnKr5lzO3HEw3jfuRCgtsudS5u8K2?usp=sharing

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.