I am implementing jQuery's tablesorter, but the arrows can't seem to show.
Here is what I've done so far:
<script type="text/javascript" src="/path/to/jquery-latest.js"></script>
<script type="text/javascript" src="/path/to/jquery.tablesorter.js"></script>
and
$(document).ready(function()
{
$("#myTable").tablesorter();
}
);
The table sorts fine but the arrows don't show. Am I missing something here?
I even added the following but didn' work:
<LINK rel="StyleSheet" type="text/css" href="../tablesorter/themes/green/style.css">
I had the same problem when using tablesorter on this page - http://ajthomas.co.uk/fpl/. However, it's because I missed adding the stylesheets and images that come in the download. It looks like you did, too.