Hello,
I have a table structure like the one shown below:
<table id="result">
<tr>
<td id="groupx">
<table>
<tr>
<td>Data</td>
</tr>
</td>
</tr>
</table>
I want to add a TD to the last tr of table result. Trying x.appendTo($("#result tr:last"));
isn't working since it's adding to the last tr of a table id "group"
Any sugestions on how I can keep using this structure of html and do this ?
Thank you for any help.
Best regards, FR