I need to reorder the following table based on the last column value only from highest to lowest. (The Donation Total) without adding a sort option for the other columns. Any help would be greatly appreciated.
<table>
<tbody><tr>
<td colspan="4"><b>Click on the Team for Participant information: </b></td>
</tr>
<tr>
<td> </td>
<td><b>Team Name</b></td>
<td><b>Team Captain</b></td>
<td><b>Donation Total</b></td>
</tr>
<tr><td></td>
<td><a href="#">another team</a></td>
<td>billy bob</td>
<td>CAN$0.00</td>
</tr>
<tr><td></td>
<td><a href="#">this team</a></td>
<td>jo schmo</td>
<td>CAN$3.00</td>
</tr>
<tr><td></td>
<td><a href="#">test team</a></td>
<td>john doe</td>
<td>CAN$2.00</td>
</tr>
</tbody></table>
I attempted using jQuery table sort but was unable to get it to work, received Undefined error message.
Any help would be greatly appreciated, here is a link to jsfiddle with the HTML in it http://jsfiddle.net/jelane20/pd4sY/