NOTE!

Demo

Account #
First Name
Last Name
Age
Total
Discount
Diff
A1 Bruce Almighty 45 153.19 44% +19
A10 Frank Carter 40 -12.99 20% (6)
A23 Elvis Presley 24 ($9.99) 50% (22)
A33 Clark Kent 18 2.89 44.2% -15
A43 Peter Parker 28 9.99 20.3% +3
A102 Bruce Evans 56 $153.19 23% +9
A255 John Hood 33 19.99 25.1% -7
A256 John Clark 44 ($19.89) 25.1% (5)

Javascript

$(function() {
  // call the tablesorter plugin
  $("table").tablesorter({
    theme : 'blue',
    sortList: [ [0,0],[1,0],[2,0] ]
  });

  $('button').click(function(){
    $('table').trigger('sortReset');
  });

});

Next up: Using selectorSort ››