Tablesorter isn't working
I can't get tablesorter to and I don't know where to begin looking for
the problem. I'm using Lotus Domino to render the page. Here is my
code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script language="JavaScript" type="text/javascript" src="/onebeacon/
design/RCRepRecdesign.nsf/jquery?OpenJavascriptLibrary">
</script>
<script language="JavaScript" type="text/javascript" src="/onebeacon/
design/RCRepRecdesign.nsf/jquery.flydom.js?OpenJavascriptLibrary">
</script>
<script language="JavaScript" type="text/javascript">
<!--
$(document).ready(function(){
$("#example2").tablesorter({sortList:[[0,0],[2,1]], widgets:
['zebra']});
});
// -->
</script>
<script language="JavaScript" type="text/javascript">
<!--
document._domino_target = "_self";
function _doClick(v, o, t, h) {
var form = document._DominoForm;
if (form.onsubmit) {
var retVal = form.onsubmit();
if (typeof retVal == "boolean" && retVal == false)
return false;
}
var target = document._domino_target;
if (o.href != null) {
if (o.target != null)
target = o.target;
} else {
if (t != null)
target = t;
}
form.target = target;
form.__Click.value = v;
if (h != null)
form.action += h;
form.submit();
return false;
}
// -->
</script>
</head>
<body text="#000000" bgcolor="#FFFFFF">
<form method="post" action="/onebeacon/design/RCRepRecdesign.nsf/
xslTest.html?OpenForm&Seq=1" name="_DominoForm">
<input type="hidden" name="__Click" value="0"><script
src="\jquery.ui.tablesorter.js"></script>
<div id="example2">
<table border="1">
<thead>
<tr>
<td>
LOB
</td>
<td>
Segment
</td>
<td>
Cat
</td>
<td>
Sub Cat
</td>
<td>
Rec Name
</td>
<td>
Rec
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
Commercial Auto
</td>
<td>
All
</td>
<td>
Fleet
</td>
<td>
Administrative Controls
</td>
<td>
Accident Preventability
</td>
<td>
Investigate and analyze all vehicle accidents to determine whether
they were preventable. The National Safety Councils definition of a
preventable accident should be followed in making this
determination. This definition states that a driver should do
everything reasonable to avoid an accident. For example if a
driver was rear ended but was found to have not used the defensive
driver skill of signaling intentions early this accident could have
been prevented and the driver should be subject to retraining.
</td>
</tr>
<tr>
<td>
Commercial Auto
</td>
<td>
All
</td>
<td>
Fleet
</td>
<td>
Administrative Controls
</td>
<td>
Administrator
</td>
<td>
Appoint a qualified person to assume total responsibility for
administration of a Transportation Loss Control Program that covers
driver qualification, vehicle maintenance and inspections. Additional
information about Motor Vehicles is attached.
</td>
</tr>
<tr>
<td>
Commercial Auto
</td>
<td>
All
</td>
<td>
Fleet
</td>
<td>
Administrative Controls
</td>
<td>
Cracked Windshield
</td>
<td>
Repair the cracked windshield on vehicle number [INSERT VEHICLE
NUMBER] to avoid impairing a drivers vision while operating this
vehicle.
</td>
</tr>
<tr>
<td>
Commercial Auto
</td>
<td>
All
</td>
<td>
Fleet
</td>
<td>
Administrative Controls
</td>
<td>
Record Keeping
</td>
<td>
Establish record keeping procedures per DOT regulation 396.3 that
includes the following information, vehicle identification number,
items inspected, maintained and repaired, lubrication dates, date of
next scheduled inspections and maintenance.
</td>
</tr>
<tr>
<td>
Commercial Auto
</td>
<td>
All
</td>
<td>
Fleet
</td>
<td>
Administrative Controls
</td>
<td>
Written Program
</td>
<td>
Develop and implement a written fleet safety program to cover all
vehicle operations. It should include, but not be limited to the
following, management safety policy statement, driver selection
criteria, driver training, vehicle maintenance, accident reporting,
accident review board, incentive program, drug/alcohol testing,
responsibilities and accountabilities.
</td>
</tr>
</tbody>
</table>
</div></form>
</body>
</html>