So do you have it?
<table id="outer">
<tbody>
<tr>
<td>
<table id="anotherTable>
...
</table>
<td>
<tr>
</tbody>
</table>
And you want to select only etc in the root table.
#outer>tbody>tr>td
Just as you entered into your question (direct child selectors).
source
share