Thanks for the update!!
I've noticed that you've included two almost identical sorters: $.tablesorter.addParser({ id: "integer", is: function(s) { return s.match(new RegExp(/^\d+$/)); }, format: function(s) { return $.tablesorter.formatInt(s); }, type: "numeric" }); $.tablesorter.addParser({ id: "integer", is: function(s) { return /^\d+$/.test(s); }, format: function(s) { return $.tablesorter.formatFloat(s); }, type: "numeric" }); Christian Bach wrote: > Hi list! > > Just uploaded the new version of tablesorter that works with the 1.2 > release of jQuery. > > Here are the main changes in version tablesorter 2.0.1 > > General > * Removed the need for Dimensions plugin when using the pagination > plugin thanks to offset being included in the jQuery 1.2 core. > * Added support for jQuery 1.2 > * Added new Minified version of tablesorter > * Updated documenation and website with new examples > > Bug fixes > * If row values are identical the original order is kept (Thanks to > David hull) > * If thead includes a table $('tbody:first', table) breaks (Thanks to > David Hull) > > Speed improvements: > * appendToTable, setting innerHTML to "" before appending new content to > table body. > * zebra widget. (Thanks to James Dempster) > > > Get it all at http://tablesorter.com > > Enjoy! > > /christian >