Skip to content

Instantly share code, notes, and snippets.

@aceraven777
Created April 17, 2019 03:00
Show Gist options
  • Save aceraven777/97f2aab0691ff840930418fb52252023 to your computer and use it in GitHub Desktop.
Save aceraven777/97f2aab0691ff840930418fb52252023 to your computer and use it in GitHub Desktop.
jQuery - If you want to get the clicked element that is outside of a div / section
$(document).on('click', function (e) {
var $clicked = $(e.target);
if ($clicked == $('header') || $clicked.parents('header').length) {
return;
}
// Your code here
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment