Last active
October 12, 2015 22:48
-
-
Save ElmahdiMahmoud/4098919 to your computer and use it in GitHub Desktop.
jquery: Dropdown Menu
This file contains 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
//Dropdown menu | |
$("# li").hover(function(){ | |
$(this).find('ul').stop().slideDown(); | |
}, | |
function(){ | |
$(this).find('ul').stop().slideUp(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment