Skip to content

Instantly share code, notes, and snippets.

@segovia94
Created October 6, 2014 18:00
Show Gist options
  • Save segovia94/ee46a6e4670337316483 to your computer and use it in GitHub Desktop.
Save segovia94/ee46a6e4670337316483 to your computer and use it in GitHub Desktop.
Hide menu on off click
//http://css-tricks.com/dangers-stopping-event-propagation/
$(document).click(function(event) {
if (!$(event.target).closest('.menucontainer').length) {
// Hide the menus.
console.log('hide the menu');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment