https://github.com/code-lts/jquery-uitablefilter
small plugin for filtering (hiding) table rows based on their text content
https://github.com/code-lts/jquery-uitablefilter
jquery jquery-plugin table-filter
Last synced: 22 days ago
JSON representation
small plugin for filtering (hiding) table rows based on their text content
- Host: GitHub
- URL: https://github.com/code-lts/jquery-uitablefilter
- Owner: code-lts
- License: other
- Created: 2008-03-05T15:40:30.000Z (about 17 years ago)
- Default Branch: master
- Last Pushed: 2020-04-27T22:59:25.000Z (about 5 years ago)
- Last Synced: 2025-03-27T17:51:39.300Z (about 1 month ago)
- Topics: jquery, jquery-plugin, table-filter
- Language: JavaScript
- Homepage: https://code-lts.github.io/jquery-uitablefilter/demo/flavorzoom/
- Size: 128 KB
- Stars: 59
- Watchers: 6
- Forks: 20
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Repository
[](https://badge.fury.io/js/jquery-uitablefilter)
https://github.com/code-tls/jquery-uitablefilter
## Download
Download the latest version here : https://github.com/code-tls/jquery-uitablefilter/blob/master/jquery.uitablefilter.js## Install
```bash
npm install jquery-uitablefilter
```
or yarn```bash
yarn add jquery-uitablefilter
```## Example
Here is an example (see the original project README for more informations). It will search for the word 'Pepper' in #table in columns 'Price', 'Item' and 'ID'.```js
$.uiTableFilter($('#table'), 'Pepper', ['Price', 'Item', 'D']);
```## Demo
Here is a [http://code-tls.github.io/jquery-uitablefilter/demo/flavorzoom/](demo).