I have added Jquery table sorter to my head.
When I add the following to my javascript:
$("table").tablesorter();
All of my other Jquery gets disabled and the table sorter does either work.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
try to open firebug or the console on chrome / ie9.
You have a javascript error which prevents any further execution.
Probably, the tablesorter plugin is not loaded. (
<script ... src="wrong here" .../>)if it is, and your error is inside tablesorter.min.js, you can try to use the not minified version.
ALternatively, your table is empty. If I remember correctly, tablesorter needs a non empty table.