i'm trying to inital sort a table by it's row-numbers from an array/variable like
$list: row0=id2;row1=id0;row2=id1...
<table>
<tr id="0">...</tr>
<tr id="1">...</tr>
<tr id="2">...</tr>
</table>
How can i handle with tablesorter that the rows will be sorted like in $list?
thanks for any tipp or workaround :)