Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 820 Bytes

README.md

File metadata and controls

33 lines (20 loc) · 820 Bytes

jQuery Thead

The jQuery Thead plugin simplifies the navigation in tables that have lots of rows and require scrolling. It enforces the visibility of the table header and ensures that the column names are always accessible for the user.

Usage

The plugin is automatically activated for every table that uses the "jquery-thead" class:

<table class="jquery-thead" />

The same class can also be used with a DIV wrapper in cases when tables that should be dynamically replaced:

<div class="jquery-thead">
    <table />
</div>

The plugin can be applied with JavaScript using the following:

$('table').thead();

Changes

09/26/2010 - jQuery Thead 1.1

  • New update method.
  • New global Ajax event listener that forces updating.

12/23/2009 - jQuery Thead 1.0

Initial release.