Skip to content

Instantly share code, notes, and snippets.

@johnReeve
Created January 8, 2015 05:40
Show Gist options
  • Save johnReeve/1d964d7b43f7192b678f to your computer and use it in GitHub Desktop.
Save johnReeve/1d964d7b43f7192b678f to your computer and use it in GitHub Desktop.
$('.gallery').on('mouseenter', 'li', function (){
$(this).removeClass('greyedout');
});
$('.gallery').on('mouseout', 'li', function (){
$(this).removeClass('greyedout');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment