Skip to content

Instantly share code, notes, and snippets.

@ElmahdiMahmoud
Last active October 12, 2015 22:48
Show Gist options
  • Save ElmahdiMahmoud/4098919 to your computer and use it in GitHub Desktop.
Save ElmahdiMahmoud/4098919 to your computer and use it in GitHub Desktop.
jquery: Dropdown Menu
//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