Skip to content

Instantly share code, notes, and snippets.

@nielk
Created February 13, 2014 14:03
Show Gist options
  • Save nielk/8975516 to your computer and use it in GitHub Desktop.
Save nielk/8975516 to your computer and use it in GitHub Desktop.
Menu slide toggle
/**
* Menu
*/
/* Init */
$('.menu nav > li > ul').slideToggle(0);
/* click event & slide */
$('.menu nav > li > a').click(function() {
var that = $(this).parent().children('ul');
$('.menu nav > li > ul').not(that).slideUp();
event.preventDefault();
that.slideToggle();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment