jQuery Plugin: Table Filter: Insert a input form for filtering table rows dinamically. http://hail2u.github.com/jquery.table-filter/
Find a file
2012-05-06 19:50:12 -03:00
jquery.table-filter.js Converted input type to be "search" instead of "text" to take advantage of html5 features (like X for clearing) 2012-05-06 19:50:12 -03:00
jquery.table-filter.min.js rebuild minified file 2011-12-13 16:08:37 +09:00
README.md update README 2011-12-13 16:09:28 +09:00
test.html update test 2012-02-26 07:22:15 +09:00

TITLE

jQuery Plugin: Table Filter - version 0.2

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

MIT: http://hail2u.mit-license.org/2009