NOTE!
		
			- This widget can be applied to the original plugin. The code is in the "jquery.tablesorter.widgets.js" file.
- This widget now saves all changed column widths to local storage, or it falls back to a cookie! (v2.1)
- Column width saving requires the new "$.tablesorter.storage()" function included with the "jquery.tablesorter.widgets.js" file (v2.1).
- Right clicking (opening the context menu) will now reset the resized columns (v2.4).
- Holding down the shift key while resizing will force the last column or the table to resize instead of the next column, but only if the table is full width. New! v2.7.4.
- Prevent resizing a column by adding any of the following (they all do the same thing), set in order of priority New! v2.7.4:
				
					- jQuery data data-resizable="false".
- metadata class="{ resizable: 'false'}". This requires the metadata plugin.
- headers option headers : { 0 : { resizable : 'false' } }.
- header class name class="resizable-false".
 
- Setting the resizablewidget option tofalse, will only prevent the saving of resized columns, it has nothing to do with preventing a column from being resized.
- Because this widget uses jQuery's closest()(jQuery 1.3+) andindex()(jQuery 1.4+) functions, it requires these newer versions of jQuery in order to work.
- In order to save the resized widths, jQuery version 1.4.1+ should be used because jQuery's parseJson()function is needed.
Demo
	
Non-full width table (individual columns resize)
	
		
			| First Name | Last Name | Age | Total | Discount | Date | 
	
	
		
			| Peter | Parker | 28 | $9.99 | 20% | Jul 6, 2006 8:14 AM | 
		
			| John | Hood | 33 | $19.99 | 25% | Dec 10, 2002 5:14 AM | 
		
			| Clark | Kent | 18 | $15.89 | 44% | Jan 12, 2003 11:14 AM | 
		
			| Bruce | Almighty | 45 | $153.19 | 44% | Jan 18, 2001 9:12 AM | 
		
			| Bruce | Evans | 22 | $13.19 | 11% | Jan 18, 2007 9:12 AM | 
	
Full width table (use shift to force last column to resize)
	
		
			| First Name | Last Name | Age | Total | Discount | Date | 
	
	
		
			| Peter | Parker | 28 | $9.99 | 20% | Jul 6, 2006 8:14 AM | 
		
			| John | Hood | 33 | $19.99 | 25% | Dec 10, 2002 5:14 AM | 
		
			| Clark | Kent | 18 | $15.89 | 44% | Jan 12, 2003 11:14 AM | 
		
			| Bruce | Almighty | 45 | $153.19 | 44% | Jan 18, 2001 9:12 AM | 
		
			| Bruce | Evans | 22 | $13.19 | 11% | Jan 18, 2007 9:12 AM | 
	
 
	Page Header
	
		<!-- blue theme stylesheet with additional css styles added in v2.0.17 -->
<link rel="stylesheet" href="../css/theme.blue.css">
<!-- tablesorter plugin -->
<script src="../js/jquery.tablesorter.js"></script>
<!-- tablesorter widget file - loaded after the plugin -->
<script src="../js/jquery.tablesorter.widgets.js"></script>
	 
	Javascript
	
	HTML
	
		<!-- The Age column is set to not be resizable -->
<table class="tablesorter" style="width:auto">
  <thead>
    <tr>
      <th>First Name</th>
      <th>Last Name</th>
      <th class="resizable-false">Age</th>
      <th>Total</th>
      <th>Discount</th>
      <th>Date</th>
    </tr>
  </thead>
  <tbody>
    ...
  </tbody>
</table>