[jQuery] Reordering rows using JQuery
I have an aspx page that looks something like this:
<tr id="Row1">
<td>Some label</td>
<td>Some complex control</td>
</tr>
<tr id="Row2">
<td>Some label</td>
<td>Some complex control</td>
</tr>
<tr id="Row3">
<td>Some label</td>
<td>Some complex control</td>
</tr>
As soon as the page is loaded, I would want to reorder these rows
based on the user's previously selected order (stored in a database)
How would I use JQuery/JS to accomplish this?