Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $("#search").on("keyup", function() {
  2. var value = $(this).val().toLowerCase();
  3. $("#table tr").filter(function() {
  4. $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
  5. });
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement