Question: Develop a To Do List application (5 points) : In this exercise, youll develop an application that uses an array to manage a To Do
Develop a To Do List application (5 points):
In this exercise, youll develop an application that uses an array to manage a To Do list. To keep this simple, assume that you do the tasks on a FIFO basis. That is, the first task added to the list is the first one that you do, so the next task is always the first one in the list.

- Open the HTML and JavaScript files attached as starter files (index.html and todo_list.js). Then, run the application to see the user interface shown above, although that interface wont do anything until you develop the JavaScript for it.
- In the JavaScript file, youll see some starting code, including a variable declaration for an array named taskList. Then, write the code for adding a task to this array when the user enters a task in the first text box and clicks the Add Task button. This code should also blank out the text box. At this point, dont worry about displaying the tasks in the text area for the task list. Instead, use alert statements to make sure this works when you add one or more items.
- Add the JavaScript code for the click event handler of the Show Next Task button. This handler should display the first task in the array in the Next task text box and remove its element from the array.
- In the event handler for the Show Next Task button, test to make sure the array has elements in it. If it doesnt, use the alert method to display No tasks remaining and clear the task from the Next task text box.
- Add a JavaScript function that displays the elements in the array in the Task list text area. Then, call this function from both of the click event handlers so the updated task list is displayed each time a task is added to the list or removed from it.
- Give this application a final test to make sure it works correctly.
Here are the starter files:
JavaScript:
var taskList = []; var $ = function (id) { return document.getElementById(id); } window.onload = function () { }
HTML:
To Do List
To Do List Add task Add Task Task list: Wash car Do laundry Clean kitchen Next task Do jQuery homework Show Next Task
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
