vote up 0 vote down star

How to add column on all rows (including header row) using jquery. The added column will be the first column.

flag

2 Answers

vote up 1 vote down check

WHat I have understand from your question, here is the code for you

$('#tableID tr:first ').append("<td class='TableHeading'>second</td>");    

 $('#tableID tr:not(:first)').each(function(){
       $(this).append("<td class='tdMiddleCells'>second</td>");

 });

Here you can loop through the table rows and then adding the column in each of the row. this will add column to last location, the first statement will add column as header and then remaining rows.

hope that will help.

link|flag
2  
you can use prepend instead of append to add column at the first location , mean new column will be the first column as you have mentioned in your question – Asim Sajjad Sep 19 at 11:28
vote up 0 vote down

This should do it:

$("tr:first").append("th");
$("tr:not(:first)").append("td");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.