(function ($) { $.fn.filtre = function () { let value = $(this).val().toLowerCase(); let target = $(this).data('target'); $(target + " tr").filter(function () { $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1) }); }; }) (jQuery);