Tablesorter by itself works great – it embeds into each HTML table nicely, wherever it is. $(‘#my_table’).tablesorter(); But when you have many rows, without paging, you might want to freeze the 1st row (the column row). Here tablesorter allows a nice widget to run: $(‘table’).tablesorter({ widgets: [‘stickyHeaders’]} ) The widget seemlessly imlements a double header mechanism: […]