Hi
i have the table below
<tr id="group_1>...</tr>
<tr id="el">...</tr>
<tr id="el">...<tr>
<tr id="group_2"></tr>
<tr id="el">...</tr>
<tr id="group_1>...</tr>
<tr id="el">...</tr>
<tr id="el">...<tr>
I need to find the last TR of each group
$("tr#group_"+groupID).next("tr#el:last").after("ADD NEW TR");
Its not working for me!!
I guess thats because i use for all groups the same id.
Can anyone help me.
Thanks