Skip to content

Instantly share code, notes, and snippets.

@VinnyFonseca
Last active March 15, 2018 13:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VinnyFonseca/5748635 to your computer and use it in GitHub Desktop.
Save VinnyFonseca/5748635 to your computer and use it in GitHub Desktop.
Closest Element Behaviour
document.body.addEventListener('click', function(event) {
if ( !event.target.closest("SELECTOR").length && document.querySelector("SELECTOR").hasClass("active") ) {
// Your function here
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment