<table id="myTable"> <thead><tr><th>Col1</th><th>Col2</th></tr></thead> <tbody></tbody> </table>when you call $("#myTable").tablesorter(); You will get following error on IE saying:
'config.parsers' is null or not an object
If you are running Firefox (FF), you won't see this error but your javascript code on the page might be broken.
So, you should either remove the table element from you page or render empty row for the table if it's empty. Hope that helps you too.
No comments :
Post a Comment