Skip to main content

Dynamically Add/Remove Rows in HTML Table Using Javascript

Following code snippet will show how to dynamically add/remove rows in Table using simple HTML and Javascript :

Source Code :
 HTML Table :  
   
 <table cellspacing=0 cellpadding=0 border=0 border-spacing=10px id="attributes_configuration_table">  
   <thead>    
     <tr>          
       <th><b>Name</b></th>             
       <th><b>Value</b></th>    
     </tr>  
   </thead>  
   <tbody>    
       <tr id="row_1">          
       <td>            
         <input type="text" name="attribute_name_1" id="attribute_name_1" style="margin-right:10px" autocomplete="off">                  
     </td>              
       <td>            
         <input type="text" name="attribute_value_1" id="attribute_value_1" style="margin-right:10px" autocomplete="off">          
       </td>        
       <td><input class="new_button" id="+" name="+" onclick="addTableRow('attributes_configuration_table')" type="button" value="+">  
       </td>    
     </tr>  
   </tbody>  
 </table>  

JavaScript :
 var counter = 1;  
 function addTableRow(TableId) {  
   var table = document.getElementById(TableId);  
   counter++;  
   var rowCount = table.rows.length;  
   var row = table.insertRow(rowCount);  
   row.id = 'row_' + counter;  
   
   var cell1 = row.insertCell(0);  
   var element1 = document.createElement("input");  
   element1.type = "text";  
   element1.autocomplete = "off";  
   element1.name="attribute_name_" + counter;  
   cell1.appendChild(element1);   
   
   var cell2 = row.insertCell(1);  
   var element2 = document.createElement("input");  
   element2.type = "text";  
   element2.autocomplete = "off";  
   element2.name="attribute_value_" + counter;  
   cell2.appendChild(element2);  
       
   var cell3 = row.insertCell(2);  
   var newButton    = document.createElement("input");  
   newButton.className = "new_button";  
   newButton.type   = "button";  
   newButton.value   = '-';  
   newButton.onclick  = removeRow;  
   cell3.appendChild(newButton);  
 }  
   
 function removeRow (id) {  
   var rowNode = this.parentNode.parentNode;  
   // Delete this node  
   rowNode.parentNode.removeChild(rowNode);  
 }  

Live Demo

Comments

Popular posts from this blog

Dudhsagar Falls - An exhilarating rail trek in the picturesque Western Ghats

Usually the trips we plan gets finalized at the last moment - making all the bookings a day or two before. But, For this trip we just changed the usual way. This was a well-planned one. We had booked train tickets and stay almost a month in advance. We boarded the train from Bangalore City station. We had our reservation in  Rani Chennamma Express  till Londa Junction. We reached Londa Junction at around 8:30 AM. We had breakfast at the station - Vada Pav and Idli Vada - were only things available there. Then, we bought General tickets and boarded  Chennai Vasco Express  at around 9:00 AM. We reached Castle Rock at around 10:00 AM. Bon Voyage - @Bangalore City Railway Station We started our expedition From Castle Rock at around 10:30 AM. Weather was awesome - drizzling with cool breeze. View was awesome all the way - full of Jungles, Mountains, small and big waterfalls. The rail trek was an ultimate experience amidst the beautiful Western Ghats. Londa Junction - Int

Sakleshpur - The Green Route Railway Trek, Waterfalls, Jungle Adventures and Much More

The breathtaking images of picturesque railway route from Sakleshpur to Kukke Subramanya captivated us to go for this trek. We had been planning to do "The Green Route trek" - that's what it is called, from last few months and then finally the day has come and we started for our journey to Sakleshpur - also referred as "Poor Man's Ooty". We read some news about the ban on trekking in western ghats. But we were not sure if it is really banned. Before the conversion of the railway line from meter gauge to broad gauge along the Sakleshpur railway line in Karnataka’s Hassan district, it was one of the most sought-after trek routes. 1, 2, 3 - Smile 1, 2, 3 - Smile We started our journey from Bangalore on Friday evening, had dinner enroute in a dhaba near Hassan and reached Sakleshpur at around the Midnight, Checked into Hotel. Next morning, We talked to some local people and We came to know "The Green Route" Trek is banned for sure. Bu

Hello World

I had heard about blogs few years back. Since then I wanted to write my blog. But, for some reasons like, what to write, how to write etc, always stopped me. Finalizing an address for the blog is most depressing thing. Address of your choice will be unavailable and to think of a name, which would be available will take a lot of time. " Sorry, this blog address is not available " will vanish your enthusiasm/excitement for blogging, unless you come up with a really unique and out-of-box kind of word/words. BTW, my blog name is not so out-of-box, but it's in Hindi (my mother-toung). This blog-name thing is one of the significant reason, I am coming up with my blog a bit late. Logged in to blogger so many times earlier, but I was not getting a name which I like. But, this time I was determined to start my blog and So friends, this is the start of  "meri-jigyasa.blogspot.com". Edit: Now, I have a custom domain "www.merijigyasa.com" for my blog. Thank