Tablesorter demo

All options included, as well as the uitheme widget

by jessikwa

HTML

<script src="https://rawgit.com/Mottie/tablesorter/master/js/jquery.tablesorter.js"></script>
<script src="https://mottie.github.io/tablesorter/js/jquery.tablesorter.widgets.js"></script>
<link rel="stylesheet" href="https://mottie.github.io/tablesorter/css/theme.blue.css">
<table class="tablesorter">
  <thead>
    <tr>
      <th>ID</th>
      <th>Vehicle Make</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>001754</td>
      <td>CHEVROLET</td>
    </tr>
    <tr>
      <td>002127</td>
      <td>FORD</td>
    </tr>
  </tbody>
</table>

JavaScript

/* Documentation for this tablesorter FORK can be found at
* http://mottie.github.io/tablesorter/docs/
* See http://stackoverflow.com/questions/39259954/custom-alphanumberic-sort-with-jquery-tablesorter
*/
$(function() {

	$("table").tablesorter({
        textSorter: {
            0: function (a, b) {
            	alert("test sorter called");
            }
        }
    });

});