Guest User

Untitled

a guest
May 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $('#searchInput').on('change, input', function() {
  2. selectOptionFilterVehicle();
  3. var searchTerm = $(this).val().toLowerCase().trim();
  4. $('#vehicleTable tbody tr').each(function() {
  5. var lineStr = $(this).text().toLowerCase();
  6. if (lineStr.indexOf(searchTerm) === -1) {
  7. $(this).hide();
  8. } else {
  9. $(this).show();
  10. }
  11. });
  12. });
Add Comment
Please, Sign In to add comment