+ 1
Beginner project in JS
What do You think I should try?
3 Respuestas
+ 5
Try to make a to do list. From simple to complicated.
If you know how to program a basic task input to do list, you know most of the basic Javascript codes.
+ 3
Make a simple to do list Html file something like below:
<body>
<form id="form">
<label>Task: </label>
<input type="text" id="task" />
<input type="submit" value="add" id="add" />
</form>
<ul id="list">
</ul>
</body>
Use Javascript to check form submit event.
In the event callback, get the text from task input.
Eventually update the new task to the list ul#list.li.
+ 1
Calvin what do you mean when you say a to do list?