UNPKG

jquery-tablefilter

Version:

Плагин для фильтрации строк таблиц путем ввода символов в поле фильтра

1 lines 455 B
!function(t){t.fn.TableFilter=function(e){"undefined"==typeof e&&(e={});var r=Object.assign({afterFilter:null},e);return this.each(function(){t(this).keyup(function(){var e=t.trim(t(this).val()).replace(/ +/g," ").toLowerCase();t(t(this).attr("data-tablefilter")).find("tbody tr").show().filter(function(){var r=t(this).text().replace(/\s+/g," ").toLowerCase();return!~r.indexOf(e)}).hide(),"function"==typeof r.afterFilter&&r.afterFilter()})})}}(jQuery);