Skip to content

Instantly share code, notes, and snippets.

@murtaugh
Created May 20, 2014 14:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save murtaugh/91c1a80f7c061f7f29eb to your computer and use it in GitHub Desktop.
Save murtaugh/91c1a80f7c061f7f29eb to your computer and use it in GitHub Desktop.
The right way to close a menu (without preventing event bubbling)
$(document).on('click', function(event) {
if (!$(event.target).closest('#menucontainer').length) {
// Hide the menus.
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment