I have a table that is populated from a .net app that produces the following content...
<table>
<tbody>
...
<tr>...anything below...
<table>
<tbody id="blahlkjasdblah">
<tr><td>
lots of custom content
</td></tr>
</tbody>
</table>
</tr>
<tr>...anything below...
<div id="something">
<table id="othertable">
<tbody>
<tr><td>
lots of other custom content that is different
</td></tr>
</tbody>
</table>
</div>
</tr>
</tbody>
</table>
What is the best way to reverse **these first two parent only**
<tr>
NOT NESTED TABLES OR TR blocks, this way the one on the bottom is on top of the 1st one?
Thanks