JavaScript - Simple To Do List App

In this tutorial we will create a Simple To Do List App using JavaScript. JavaScript is a scripting or programming language that allows you to implement complex things on web pages. It can renders web pages in an interactive and dynamic fashion. It is widely used in designing a stunning website. This code can be used as your converter to your mathematical problem. So Let's do the coding...

Getting started:

This is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.         <head>
  4.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6.         </head>
  7.         <nav class="navbar navbar-default">
  8.                 <div class="container-fluid">
  9.                         <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  10.                 </div>
  11.         </nav>
  12.         <div class="col-md-3"></div>
  13.         <div class="col-md-6 well">
  14.                 <h3 class="text-primary">Javascript - Simple To Do List App</h3>
  15.                 <hr style="border-top:1px dotted #ccc;"/>
  16.                 <div class="form-inline">
  17.                         <label>Add Item</label>
  18.                         <input type="text" id="item" class="form-inline"/>
  19.                         <button class="btn btn-success" onclick="addItem()"><span class="glyphicon glyphicon-plus"></span></button>
  20.                 </div>
  21.                 <center><h3 class="text-primary">My To Do List</h3></center>
  22.                 <ul class="list-group" id="list" style="word-wrap:break-word;"/>
  23.                 </ul>
  24.         </div>
  25. </body>
  26. <script src="js/script.js"></script>
  27. </html>

Creating the Script

This code contains the script of the application. This code can add your task by adding in the data input to view the list of all your workloads. To do this just copy and write these block of codes as shown below inside the text editor and save it as script.js inside the js folder.
  1. var items = document.getElementById('list');
  2. var list = []
  3.  
  4.  
  5. function displayList(){
  6.         var data = '';
  7.         if(list.length > 0){
  8.                 for(var i=0; i < list.length; i++){
  9.                         data += "<li class='list-group-item'><button class='pull-right' onclick='removeItem("+i+")'><span class='glyphicon glyphicon-trash text-danger'></span></button>"+list[i]+"</li>";
  10.                 }
  11.         }
  12.        
  13.         document.getElementById('list').innerHTML = data;
  14. }
  15.  
  16. function addItem(){
  17.         var item = document.getElementById('item');
  18.         var val = item.value;
  19.         if(val == ""){
  20.                 alert("Please enter something first!");
  21.         }else{
  22.                 list.push(val.trim());
  23.                 item.value = '';
  24.                 displayList();
  25.         }
  26.        
  27. }
  28.  
  29.  
  30. function removeItem(item){
  31.         list.splice(item, 1);
  32.         displayList();
  33. }
There you have it we successfully created a Simple To Do List App using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Add new comment