Skip to content
Advertisement

How to use javascript to insert tags in tables

I’m trying to find a way to insert html element tags into a table structure. There are often multiple tables in an html page so I dynamically create and insert an ID for each table which works fine. However, when I try to insert specific html elements into the different portions of the table I get nothing but errors or the table never gets updated.

I’m a technical writer experimenting with javascript and the authoring tool I use doesn’t allow for thead and tbody tags, so when I come across a table in an html page in my document that doesn’t have this structure, I need to add it. Afterwards, I dynamically implement visual elements into the table to make it easier to find information.

This all works fine on tables that already have the thead structure so I need a way to get this structure into tables that don’t have it.

Here’s a before and after view of what I’m trying to do:

Before:

JavaScript

After – here, you can see the thead & /thead and tbody & /tbody structure:

JavaScript

Please let me know if there’s a way to do this – thanks!

Here’s a clarification of the challenge I’m facing:

JavaScript

Advertisement

Answer

In general, you can call the insertRow() method on a Table DOM element, followed by calls to the insertCell() method as shown below to dynamically add tags to your table with JavaScript.

Try this on JSFiddle, it seems to work just fine for me!

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement