Skip to content

Instantly share code, notes, and snippets.

@KruegerDesigns
Last active August 29, 2015 14:05
Show Gist options
  • Save KruegerDesigns/5760a5a424963b236520 to your computer and use it in GitHub Desktop.
Save KruegerDesigns/5760a5a424963b236520 to your computer and use it in GitHub Desktop.
Toggle Menu for jQuery
// Hides the menu
$(".menu").hide;
// This toggles the menu's visibility on/off, with a fade feature
$( ".toggle-button" ).on( "click", function() {
event.stopPropagation();
$(".menu").fadeToggle( "fast" );
});
// This fades out the menu when the user clicks outside of the menu area
$(document).on( "click", function() {
$(".menu").fadeOut( "fast" );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment