Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <link rel="stylesheet" type="text/css" href="http://progamonth.com/files/tablesorter/themes/blue/style.css">
  <script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js"></script>
  <script src="http://pastie.org/1068437.txt"></script>
</head>
<body>
<table id="rowspan" class="tablesorter">
<thead>
<tr>
  <th rowspan="3">A</th>
  <th rowspan="3">B</th>
  <th rowspan="3">C</th>
  <th rowspan="3">D</th>
  <th colspan="2">1</th>
  <th colspan="2">2</th>
  <th colspan="2">3</th>
  <th colspan="2">4</th>
  <th rowspan="3">E</th>
  <th rowspan="3">F</th>
</tr>
<tr>
  <th>1.1</th>
  <th>1.2</th>
  <th>2.1</th>
  <th>2.2</th>
  <th>3.1</th>
  <th>3.2</th>
  <th>4.1</th>
  <th>4.2</th>
</tr>
<tr>
  <th>1.1</th>
  <th>1.2</th>
  <th>2.1</th>
  <th>2.2</th>
  <th>3.1</th>
  <th>3.2</th>
  <th>4.1</th>
  <th>4.2</th>
</tr>
</thead>
</table>
</body>
</html>
 
  $(function(){
    $('#rowspan').tablesorter({
      headerFilter: function(){ return this.colSpan == 1; }
    });
  });
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
bluSCALE4pro
0viewers