Skip to content

Instantly share code, notes, and snippets.

@knorthfield
Created April 11, 2012 22:23
Show Gist options
  • Save knorthfield/2363154 to your computer and use it in GitHub Desktop.
Save knorthfield/2363154 to your computer and use it in GitHub Desktop.
jQuery live filter
$("#filter").focus();
$("#filter").keyup(function(){
strFilter = $("#filter").val().toLowerCase();
$("ul.projects li").each(function(){
$(this).html().toLowerCase().match( strFilter ) ?
$(this).fadeIn() :
$(this).fadeOut() ;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment