Can't get tablesorter working - must be something obvious!
Apologies in advance for what I'm sure will turn out to be a glaringly obvious mistake on my part.
I'm trying to get tablesorter working on my site, as per http://tablesorter.com/docs/
Here's the page I'm working on:
http://www.modularsynth.co.uk/test/test_tablesorter.php
I've included references to jquery-1.5.1.min.js and jquery.tablesorter.min.js in the page header, and uploaded the files to my site.
I'm sure the references are OK, because if I use firefox web developer to view javascript it can find both of these.
I've included a script in the header to sort the table:
<script type="text/javascript">
$(document).ready(function()
{
$("#myTable").tablesorter();
}
);
</script>
The table has an id of "myTable" and is of class "tablesorter".
I've uploaded the css file, and again, I'm sure this is being located OK, because the table has the look and feel of a tablesorter class, and again web Developer is able to display the css correctly.
BUT, the icons aren't appearing, and the table is not sorting.
I've put copies of the icons in root, in the same directory as the page and the same directory as the jquery files for good measure, but they're not being found. And no amount of clicking will sort the columns.
I've been trying to get this working for a couple of days and must admit defeat.
What would you suggest trying next?
Thanks in advance,
Ben