Just updated to the latest tablesorter and looks like its broken or something. Everytime i try to open my page, firebug says: table.config.parsers is undefined
and it just break the whole javascript. If i revert the tablesorter version, it will work fine Heres JS and HTML:
$("#List").tablesorter({
widgets: ['zebra'],
headers: {
4: { sorter: false }
}
});
<table id="List" class="tablesort ui-widget-content ui-corner-top">
<thead>
<tr class="ui-widget">
<th>País</th>
<th>ISO</th>
<th>ISO3</th>
<th>CODE</th>
<th> </th>
</tr>
</thead>
<tbody>
</tbody>
</table>