How do you select the td elemennts of a table, without the td\'s of the nested tables ?
I thought of the following selector: table > tbody &g
So you have this?
...
And you want to only select td's in the root table.
#outer>tbody>tr>td
Just like you entered in your question (direct child selectors).