jQuery Plugin: Table Filter: Insert a input form for filtering table rows dinamically. http://hail2u.github.com/jquery.table-filter/
Find a file
2010-12-22 07:44:14 +09:00
jquery.table-filter.js update version number to 0.1.2 2010-12-22 07:44:14 +09:00
jquery.table-filter.min.js delayed keypress event 300ms 2010-12-22 07:42:41 +09:00
README.md change: heading to paragraph 2009-06-07 14:20:30 +09:00
test.html update jQuery to 1.4.4 from 1.3.2 2010-12-22 07:35:43 +09:00

TITLE

jQuery Plugin: Table Filter - version 0.1.1

DESCRIPTION

Insert a input form for filtering table rows dinamically.

Usage

Insert to all table:

$("table").addTableFilter();

Insert to "#table1" only:

$("#table1").addTableFilter();

Insert with custom label text and size:

$("table").addTableFilter({
  labelText: "Filtering Words: ",
  size:      48
});

Styling

You can style inserted elements like this:

.formTableFilter {
  text-align: right;
}

.formTableFilter label {
  font-weight: bold;
}

.formTableFilter input {
  border: 1px solod #999999;
  width: 12em;
  color: #ffffff;
  background-color: #333333;
}

LICENSE

Copyright (c) 2009 Kyo Nagashima kyo@hail2u.net
This library licensed under MIT license:
http://opensource.org/licenses/mit-license.php