Skip to content

Instantly share code, notes, and snippets.

@bbrochier
Created February 26, 2016 09:17
Show Gist options
  • Save bbrochier/fa649a873e3758dbc6e1 to your computer and use it in GitHub Desktop.
Save bbrochier/fa649a873e3758dbc6e1 to your computer and use it in GitHub Desktop.
Click outside
/* ==========================================================================
CLICK OUTSIDE
========================================================================== */
//https://css-tricks.com/dangers-stopping-event-propagation/
$(document).on('click', function(event) {
/* My dropdown
========================================================================== */
if (!$(event.target).closest('.myDropDown').length) {
$('.myDropDown').removeClass('is-opened');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment