I know how to append or prepend a new row into a table using jquery:

$('#my_table > tbody:last').append(html);

How to I insert the row (given in the html variable) into a specific "row index" i. So if i=3, for instance, the row will be inserted as the 4th row in the table.

link|improve this question

78% accept rate
feedback

7 Answers

up vote 18 down vote accepted

You can use .eq() and .after() like this:

$('#my_table > tbody > tr').eq(i-1).after(html);

The indexes are 0 based, so to be the 4th row, you need i-1, since .eq(3) would be the 4th row, you need to go back to the 3rd row (2) and insert .after() that.

link|improve this answer
It should be noticed that if jQuery's eq function is given a negative value, it'll loop around to the end of the table. So running this and trying to insert it on the 0 index will cause the new row to be inserted at the end – rossisdead Dec 22 '11 at 14:23
feedback

Try this:

var i = 3;

$('#my_table > tbody > tr:eq(' + i + ')').after(html);

or this:

var i = 3;

$('#my_table > tbody > tr').eq( i ).after(html);

or this:

var i = 4;

$('#my_table > tbody > tr:nth-child(' + i + ')').after(html);

All of these will place the row in the same position. nth-child uses a 1 based index.

link|improve this answer
feedback

Use the eq selector to selct the nth row (0-based) and add your row after it using after, so:

$('#my_table > tbody:last tr:eq(2)').after(html);

where html is a tr

link|improve this answer
feedback
$('#my_table tbody tr:nth-child(' + i + ')').after(html);
link|improve this answer
feedback

try this:

$("table#myTable tr").last().after(data);
link|improve this answer
feedback

Note:

$('#my_table > tbody:last').append(newRow); // this will add new row inside tbody

$("table#myTable tr").last().after(newRow);  // this will add new row outside tbody 
                                             //i.e. between thead and tbody
                                             //.before() will also work similar
link|improve this answer
feedback
$($('#my_table > tbody:last')[index]).append(html);
link|improve this answer
2  
This would always result in an index out of range exception. – Nick Craver Aug 26 '10 at 17:47
feedback

Your Answer

 
or
required, but never shown

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