Skip to content

Instantly share code, notes, and snippets.

@danielhaim1
Created January 28, 2014 23:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielhaim1/dcd2fe92cda977ecbc53 to your computer and use it in GitHub Desktop.
Save danielhaim1/dcd2fe92cda977ecbc53 to your computer and use it in GitHub Desktop.
Toggle class on :hover
$('.class').hover(function(){
$(this).addClass('hover');
}, function(){
$(this).removeClass('hover');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment