mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
52 lines
1.8 KiB
HTML
52 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Basic Tablesorter Demo</title>
|
|
|
|
<!-- Demo styling -->
|
|
<link href="docs/css/jq.css" rel="stylesheet">
|
|
|
|
<!-- jQuery: required (tablesorter works with jQuery 1.2.3+) -->
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>
|
|
|
|
<!-- Pick a theme, load the plugin & initialize plugin -->
|
|
<link href="css/blue/style.css" rel="stylesheet">
|
|
<script src="js/jquery.tablesorter.js"></script>
|
|
<script>
|
|
$(function(){
|
|
$('table').tablesorter();
|
|
});
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<div class="demo">
|
|
<h1><a href="https://github.com/Mottie/tablesorter">TableSorter v2.0.6</a></h1>
|
|
<p>By Christian Bach, updated 6/22/2011 by Rob G<br><a href="docs/index.html">Docs included</a></p>
|
|
|
|
<table class="tablesorter">
|
|
<thead>
|
|
<tr>
|
|
<th>AlphaNumeric Sort *New*</th>
|
|
<th>Numeric</th>
|
|
<th>Alphabetical</th>
|
|
<th>Sites</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr><td>abc 123</td><td>10</td><td>Koala</td><td>http://www.google.com</td></tr>
|
|
<tr><td>abc 1</td><td>234</td><td>Ox</td><td>http://www.yahoo.com</td></tr>
|
|
<tr><td>abc 9</td><td>10</td><td>Girafee</td><td>http://www.facebook.com</td></tr>
|
|
<tr><td>zyx 24</td><td>767</td><td>Bison</td><td>http://www.whitehouse.gov/</td></tr>
|
|
<tr><td>abc 11</td><td>3</td><td>Chimp</td><td>http://www.ucla.edu/</td></tr>
|
|
<tr><td>abc 2</td><td>56</td><td>Elephant</td><td>http://www.wikipedia.org/</td></tr>
|
|
<tr><td>abc 9</td><td>155</td><td>Lion</td><td>http://www.nytimes.com/</td></tr>
|
|
<tr><td>ABC 10</td><td>87</td><td>Zebra</td><td>http://www.google.com</td></tr>
|
|
<tr><td>zyx 1</td><td>999</td><td>Koala</td><td>http://www.mit.edu/</td></tr>
|
|
<tr><td>zyx 12</td><td>0</td><td>Llama</td><td>http://www.nasa.gov/</td></tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
</body></html> |