Skip to content

Instantly share code, notes, and snippets.

@mattdeco
Created May 17, 2012 18:05
Show Gist options
  • Save mattdeco/2720602 to your computer and use it in GitHub Desktop.
Save mattdeco/2720602 to your computer and use it in GitHub Desktop.
jQuery(document).ready(function($) {
$("#nav > li > a").attr("href", "#");
$('#nav > li').click(function(e){
$('#nav > li > ul').hide(500);
$(this).children('ul').slideToggle();
e.stopPropagation();
});});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment