So I am trying to use http://tablesorter.com/docs/ to sort my tables, but when I add the example code
This is in my headers:
Code:
<script type="text/javascript">
$(function() {
$("#sortable").tablesorter();
});
</script>
I added this in the wiki page:
Code:
<table id="sortable" class="tablesorter">
<thead>
<tr>
<th>Number Of Fatalities</th>
<th>Year</th>
<th>Month Of Incident(S)</th>
</tr>
But when the table renders, I get this:
Code:
<table id="sortable" class="tablesorter">[B]<div class="vw-div"> </div>[/B]<thead><div class="vw-div"> </div><tr><div class="vw-div"> </div>
Why are these DIV's added and is there a way to omit these to attempt to get this table sorter working?
Bookmarks