Reputation: 7213
let's say I have the following stucture:
<div id="main">
<table>
<tbody>
<tr>
<td>
<div>
<table>
<tbody>
<tr>
<td>
<div><table>Last table here</table></div>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</table>
</div>
How to find that very last table?
Upvotes: 3
Views: 1439