Current Path : /home/numerotech/live.numerotech.com/common_user_dashboard/core/static/js/ |
Current File : //home/numerotech/live.numerotech.com/common_user_dashboard/core/static/js/jquery.search.js |
$(document).ready(function () { $(".search-text").keyup(function () { var filter = $(this).val(); $(".search-contain").each(function () { var $i = 0; $(this).find(".searchable").each(function () { if ($(this).text().search(new RegExp(filter, "i")) >= 0) { $i++; } }); if ($i > 0) { $(this).closest(".search-contain").show(); } else { $(this).closest(".search-contain").hide(); } }); }); });