Skip to main content

Bug Tracker

Side navigation

Ticket #3068: sort.html


File sort.html, 1.5 KB (added by awicenec, June 20, 2008 11:58AM UTC)

HTML example file

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
                    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  
  <script>
  $(document).ready(function(){
    $("#listing").tablesorter({ 0: {sorter:"text"}, 1: {sorter:"integer"}});
  });
  </script>
  
</head>
<body>
  <link rel="stylesheet" href="http://dev.jquery.com/view/trunk/themes/flora/flora.all.css" type="text/css" media="screen" title="Flora (Default)">
<script src="http://tablesorter.com/jquery-latest.js"></script>
<script src="http://tablesorter.com/jquery.tablesorter.js"></script>

<link rel="stylesheet" href="http://tablesorter.com/themes/blue/style.css" type="text/css" media="print, projection, screen" />


        <table id="listing" class="tablesorter">
           <thead>
               <tr>
                  <th>String</th>
                  <th>Number</th>
               </tr>
           </thead>
           <tbody>
                <tr>
                     <td>Blue</td>
                     <td>0</td>
                </tr>
                <tr>
                     <td>Green</td>
                     <td>14</td>
                </tr>
                <tr>
                     <td>Red</td>
                     <td>9</td>
                </tr>
                <tr>
                     <td>Brown</td>
                     <td>24</td>
                </tr>
           </tbody>
        </table>
</body>
</html>

Download in other formats:

Original Format