rows = $(’table>tbody>tr’).get() // an array of the rows.
Then sort them,
rows = rows.sort(orderByFirstTd)
Then insert them back into the DOM
$(’table>tbody).append(rows)
Now you just need to write a classic sort compare function… orderByFirstTd
JΛ̊KE