filtre.js 297 B

123456789
  1. (function ($) {
  2. $.fn.filtre = function () {
  3. let value = $(this).val().toLowerCase();
  4. let target = $(this).data('target');
  5. $(target + " tr").filter(function () {
  6. $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
  7. });
  8. };
  9. }) (jQuery);