Skip to content

Instantly share code, notes, and snippets.

@webhasan
Last active May 19, 2016 06:01
Show Gist options
  • Save webhasan/8629371 to your computer and use it in GitHub Desktop.
Save webhasan/8629371 to your computer and use it in GitHub Desktop.
Dropdown Menu
<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