Last active
May 19, 2016 06:01
-
-
Save webhasan/8629371 to your computer and use it in GitHub Desktop.
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
<script> | |
$('#main-menu li').hover(function(){ | |
$(this).children('ul').stop().slideToggle(250); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment