Skip to content

Instantly share code, notes, and snippets.

@v1talii-dev
Created August 30, 2016 09:40
Show Gist options
  • Save v1talii-dev/e2ac3c8f583b2f953b772b2c782fc611 to your computer and use it in GitHub Desktop.
Save v1talii-dev/e2ac3c8f583b2f953b772b2c782fc611 to your computer and use it in GitHub Desktop.
javascript: hide element when clicked outside this element
$(document).on('click', function(e) {
if($(e.target).closest("#block").length) {
return;
}
if (!$(e.target).closest(".control").length) {
// hide element;
e.stopPropagation();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment