UNPKG

equation-admin-template

Version:

Booststrap 4 admin template made by equation

9 lines 310 B
$(function() { $('#input-search').on('keyup', function() { var rex = new RegExp($(this).val(), 'i'); $('.searchable-container .items').hide(); $('.searchable-container .items').filter(function() { return rex.test($(this).text()); }).show(); }); });