I'm trying to add a new row after a specific row in a ASP.NET DataGrid with JQuery. I already added a new row after every row doing:
$('<tr class="sep"><td colspan="13"></td></tr>').insertAfter('tr.fila');
but now I want to add the row after some specific rows and not after all of them.
Can somebody give me a hand with this?