﻿    $(document).ready(function() {
        // call the tablesorter plugin 
        $("table").tablesorter({
            // sort on the first column and third column, order asc 
            sortList: [[0, 0]],widgets: ['zebra']
        });
    }); 
