Created
June 6, 2012 15:27
-
-
Save claushellsing/2882633 to your computer and use it in GitHub Desktop.
Test Sort Table publing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title></title> | |
<script type="text/javascript" src="jquery.js"></script> | |
<script type="text/javascript" src="jquery.tablesorter.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function () { | |
// body... | |
$.tablesorter.addWidget({ | |
id:"transformer", | |
format: function(table){ | |
console.log(table); | |
} | |
}); | |
$("#myTable").tablesorter({ | |
widgets:["transformer"] | |
}); | |
}) | |
</script> | |
</head> | |
<body> | |
<table id="myTable" class="tablesorter"> | |
<tbody> | |
<tr> | |
<th>Last Name</th> | |
<th>First Name</th> | |
<th>Email</th> | |
<th>Due</th> | |
<th>Web Site</th> | |
</tr> | |
<tr> | |
<td>Smith</td> | |
<td>John</td> | |
<td>[email protected]</td> | |
<td>$50.00</td> | |
<td>http://www.jsmith.com</td> | |
</tr> | |
<tr> | |
<td>Bach</td> | |
<td>Frank</td> | |
<td>[email protected]</td> | |
<td>$50.00</td> | |
<td>http://www.frank.com</td> | |
</tr> | |
<tr> | |
<td>Doe</td> | |
<td>Jason</td> | |
<td>[email protected]</td> | |
<td>$100.00</td> | |
<td>http://www.jdoe.com</td> | |
</tr> | |
<tr> | |
<td>Conway</td> | |
<td>Tim</td> | |
<td>[email protected]</td> | |
<td>$50.00</td> | |
<td>http://www.timconway.com</td> | |
</tr> | |
</tbody> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment