How to select cells in a table but not cells in an embedded table? The question is how to do this in jQuery . I need to do this in CSS.
<table id="Outer">
<tr>
<td> --this one
</td>
<td> --this one
<table>
<tr>
<td></td> -- but not this one or any deeper nested cells
</tr>
</table>
</td>
</tr>
</table>
source
share