I wouldn't want to use plugin to sort my table such as tablesorter because it would be an overhead for desired functionality.
I want to sort my table only once when page is loaded I don't want that functionality to be available all the time.
So imagine if I have i rows each containing k columns and k #2 is the one I want to use for this sorting so my sorting would be based on this column in descending order I want to sort their rows.
Something like this :
var $rows = $("#score-table tr");
$.each($rows, function(index, row) {
//sort table
});