Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $("input#search").keyup(function(){
  2. _this = this;
  3. $.each($(".replace_tbl tbody tr td.name"), function() {
  4. if($(this).text().toLowerCase().indexOf($(_this).val().toLowerCase()) === -1) {
  5. $(this).closest('tr').hide();
  6. // $(this).hide();
  7. } else {
  8. $(this).closest('tr').show();
  9. // $(this).show();
  10. };
  11. });
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement