I'm struggling to remove the table element inside the TD tag using jQuery.
Here is my Table structure:
<table>
<tr>
<td>some data</td>
<td>
<table><tr><td>this table inside I want to delete</td></tr></table>
</td>
</tr>
</table>
I want to use .remove()
function in ready state function, but I don't know how.