Is there a solution to create an ancestor and child element in jQuery?
$('#tblSample tr:last').after('<tr><td></td><td></td></tr>');
It looks like
<tr>
<td></td>
<td></td>
</tr>
But how can I produce DYNAMIC <td></td> child elements between <tr> and </tr> tags?
Do you mean this?
It will add a
tdelement inside lasttroftblSample