Add search input to any html tables instantly! Search and filters rows and cells. CSS customizable. Fast.
The plugin add a class
.found
to any cell and row matching the text. Use with:
$("table").tableSearch();
Examples: <script type="text/javascript"> $(function(){ $(".table1").tableSearch(); }); </script> <style> .table1 .found { background-color: yellow; } </style>
<script type="text/javascript"> $(function(){ $(".table3").tableSearch(); }); </script> <style> .table3 td.found { background-color: yellow; } </style>