Created
March 23, 2014 20:46
-
-
Save chrisblackwell/9729571 to your computer and use it in GitHub Desktop.
jQuery Dropdown Menu
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
// Menu Hover | |
$(".menu li").on('mouseenter', function () { | |
$(this).children(".sub-menu").slideDown(function() { | |
$(this).stop(true,true); | |
}) | |
}); | |
$(".menu li").on('mouseleave', function () { | |
$(this).children(".sub-menu").slideUp(function() { | |
$(this).stop(true,true); | |
}) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment