Lets say I have the following:
<table><tr><td>
<table> <!-- I want a reference to this table -->
<tr>
<td>
<table>
<tr><td><span class="theSpanClass"></span></td></tr>
</table>
</td>
</tr>
</table>
</td></tr></table>
Using jQuery, I'd like to be able to reference the 2nd table starting from the span towards the body.
Thanks