A jquery plugin (one day vanilla js) to sort (number,text,date,..., implement your sort algorythm) rows of table (same table or different table)
$ todo:
a better faq/readme.
include yajts.js, style.css and jquery in your html.
check index.html for an example.
fixedColumns
number of columns to fix
you can add other methods to compare (date, text, number/values by default) by adding an object in the compareMethods
//this will not work, just a generic example
nameCompareFunction: function(param1, param2) {
return param1 - param2;
}
tableToSort = ‘.class’
define class of table body
tableBodyClass = ‘.class’;