I want to select only the first level of 'td' elements in a table and not the cells of any nested tables. eg:
<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>
(and yes in prod code i would include tbody, thead...)