設置が非常に簡単な表検索要のjQueryプラグイン。
以下サンプルコードのようにプラグインを読み込んだ後、1行スクリプトを指定するだけで動作する。
サンプルコード
<form>
<input type="text" id="search">
</form>
<table>
<tbody>
<tr>
<td>Test cell</td>
<td>Another test cell</td>
</tr>
</tbody>
</table>
<script src="jquery.js"></script>
<script src="jquery.quicksearch.js"></script>
<script>
$('input#search').quicksearch('table tbody tr');
</script>
ライセンス:MITライセンス
サイトURL:https://deuxhuithuit.github.io/quicksearch/