Skip to content

Instantly share code, notes, and snippets.

@microdesign
Created February 26, 2016 01:10
Show Gist options
  • Save microdesign/48369e067fcad95bfe08 to your computer and use it in GitHub Desktop.
Save microdesign/48369e067fcad95bfe08 to your computer and use it in GitHub Desktop.
jQuery easy lists filter
var $products = $('.list li');
$('#filter').keyup(function() {
var re = new RegExp($(this).val(), "i"); // "i" means it's case-insensitive
$products.show().filter(function() {
return !re.test($(this).text());
}).hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment