i have three td's inside of #mainmenu.
<table cellpadding="0" cellspacing="5" id="mainmenu">
<tbody>
<tr>
<td valign="top" class="menu_sub">
something
</td>
<td valign="top" class="menu_sub">
something
</td>
<td valign="top" class="menu_sub">
something
</td>
</tr>
</tbody>
</table>
I want to remove the first two td's inside of my table, how can i do that?
$('#mainmenu td').remove();