Skip to content

Instantly share code, notes, and snippets.

@envex
Created June 2, 2010 18:30
Show Gist options
  • Save envex/422773 to your computer and use it in GitHub Desktop.
Save envex/422773 to your computer and use it in GitHub Desktop.
//Drop down
$('ul#nav li').mouseenter(function(){$(this).find("ul").stop().slideDown('fast');});
$('ul#nav li').mouseleave(function(){$(this).find("ul").stop().slideUp('fast');});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment