Created
October 6, 2014 18:00
-
-
Save segovia94/ee46a6e4670337316483 to your computer and use it in GitHub Desktop.
Hide menu on off click
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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