Skip to content

Instantly share code, notes, and snippets.

@hsquareweb
Created April 19, 2012 16:13
Show Gist options
  • Save hsquareweb/2422038 to your computer and use it in GitHub Desktop.
Save hsquareweb/2422038 to your computer and use it in GitHub Desktop.
jQuery: Navigation Slide
// NAVIGATION SLIDE
$('nav ul li').hover(function(){
$(this).find('ul').slideToggle('fast');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment