$('table tr:eq(3)').after('<tr><td>5</td></tr>');
or
$('<tr><td>5</td></tr>').insertAfter('table tr:eq(3)');
2
solved How do I add a table row to a table after the forth
$('table tr:eq(3)').after('<tr><td>5</td></tr>');
or
$('<tr><td>5</td></tr>').insertAfter('table tr:eq(3)');
2
solved How do I add a table row to a table after the forth