Skip to content

Instantly share code, notes, and snippets.

@iskernel
Last active December 19, 2015 10:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iskernel/5940580 to your computer and use it in GitHub Desktop.
Save iskernel/5940580 to your computer and use it in GitHub Desktop.
The HTML code for the HTML Table Sorter example.
<!DOCTYPE html>
<html>
<head>
<title>example</title>
</head>
<body>
<table border="1" id="sortableTable">
<thead>
<th>Name</th><th>Age</th>
</thead>
<tbody>
<tr><td>John</td><td>20</td></tr>
<tr><td>Jim</td><td>51</td></tr>
<tr><td>Amy</td><td>40</td></tr>
<tr><td>Malcom</td><td>60</td></tr>
</tbody>
</table>
<script type="application/dart" src="iskernel_tablesorter_example.dart"></script>
<script src="packages/browser/dart.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment