Insert Table Row Using JavaScript

In this article we will create Insert Table Row using JavaScript. The program will dynamically create and insert a row in a HTML table. The trick of this code is to bind the form value as an id then create a table element using dot notation createElement(). To learn more about this, just follow the steps below.

Getting started:

First you have to download bootstrap framework, 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 hmtl>
  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">Insert Table Row Using JavaScript</h3>
  15.                 <hr style="border-top:1px dotted #ccc;"/>
  16.                 <div class="col-md-8">
  17.                         <table class="table table-bordered">
  18.                                 <thead class="alert-info">
  19.                                         <tr>
  20.                                                 <th>Firstname</th>
  21.                                                 <th>Lastname</th>
  22.                                         </tr>
  23.                                 </thead>
  24.                                 <tbody id="result">
  25.                                         <tr><td>John</td><td>Smith</td></tr>
  26.                                 </tbody>
  27.                         </table>
  28.                 </div>
  29.                 <div class="col-md-4">
  30.                         <form>
  31.                                 <div class="form-group">
  32.                                         <label>Firstname</label>
  33.                                         <input type="text" id="firstname" class="form-control" />
  34.                                 </div>
  35.                                 <div class="form-group">
  36.                                         <label>Lastname</label>
  37.                                         <input type="text" id="lastname" class="form-control" />
  38.                                 </div>
  39.                                 <center><button type="button" class="btn btn-primary" onclick="insertRow();">Insert row</button></center>
  40.                         </form>
  41.                 </div>
  42.         </div>
  43. <script src="js/script.js"></script>   
  44. </body>
  45. </html>

Creating the Script

This code contains the script of the application. The code will dynamically insert a new row. To do this just copy and write these block of codes inside the text editor, then save it as script.js inside the js folder.
  1. function insertRow(){
  2.         var firstname=document.getElementById('firstname').value;
  3.         var lastname=document.getElementById('lastname').value;
  4.  
  5.         if(firstname =="" || lastname ==""){
  6.                 alert("Please enter something first!");
  7.         }else{
  8.                 var parent=document.createElement('tr');
  9.                 var col1=document.createElement('td');
  10.                 var col2=document.createElement('td');
  11.                 var text1=document.createTextNode(firstname);
  12.                 var text2=document.createTextNode(lastname);
  13.                 col1.appendChild(text1);
  14.                 col2.appendChild(text2);
  15.                 parent.appendChild(col1);
  16.                 parent.appendChild(col2);
  17.  
  18.                 document.getElementById('result').appendChild(parent);
  19.  
  20.                 document.getElementById('firstname').value="";
  21.                 document.getElementById('lastname').value="";
  22.         }
  23.  
  24. }
There you have it we successfully created a Insert Table Row 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