Created
January 6, 2014 16:00
-
-
Save unknownuser88/8284923 to your computer and use it in GitHub Desktop.
hover class toggle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('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