Skip to content

Instantly share code, notes, and snippets.

@unknownuser88
Created January 6, 2014 16:00
Show Gist options
  • Save unknownuser88/8284923 to your computer and use it in GitHub Desktop.
Save unknownuser88/8284923 to your computer and use it in GitHub Desktop.
hover class toggle
$('div').on("mouseenter mouseleave", function(e) {
$(this).toggleClass('highlight', e.type === "mouseenter");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment