Skip to content

Instantly share code, notes, and snippets.

@ryanburnette
Last active December 15, 2015 22:59
Show Gist options
  • Save ryanburnette/5337314 to your computer and use it in GitHub Desktop.
Save ryanburnette/5337314 to your computer and use it in GitHub Desktop.
jQuery Hovers
function init_hovers() {
var $hovers = $('.dohover'); // Elements that get the .hover class
$hovers.off('mouseenter mouseleave');
$hovers.hover(function() {
$(this).stop(true,true).toggleClass('hover', 1000);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment