[jQuery] Trouble with tablesorter in IE

[jQuery] Trouble with tablesorter in IE


I've got the tablesorter plugin working great in Firefox. However, it has no
effect in IE. The table behaves as if it's just a static table. The column
header background images do not appear and clicking col heads does nothing.
I verified that the page is valid XHTML 1.0 Transitional.
I set up tablesorter like this...
$(document).ready(function() {
$("#entry").tablesorter({
cssHeader: 'header',
cssAsc: 'headerSortUp',
cssDesc: 'headerSortDown',
});
});
The HTML looks like this...
<table class="displaytagtable" id="entry">
<thead>
<tr>
<th>Entered time</th>
<th>Logged in user</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="center">
2007-08-14
</td>
<td class="center">
admin
</td>
<td class="center">
TRANSFER CHECKLIST
</td>
<td>Transfer "Highway Road Signs" checklist from user joe to user
mary</td>
</tr>
<tr class="even">
<td class="center">
2007-08-14
</td>
<td class="center">
admin
</td>
<td class="center">
TRANSFER CHECKLIST
</td>
<td>Transfer "Train computer system" checklist from user joe to user
mary</td>
</tr>
[...]
Any suggestion why it works in Firefox 2 but not IE 6?
--
View this message in context: http://www.nabble.com/Trouble-with-tablesorter-in-IE-tf4269437s15494.html#a12151384
Sent from the JQuery mailing list archive at Nabble.com.