Created
June 10, 2017 02:01
-
-
Save ifyour/b950b2d26b3f560ea391a01553f15b7a to your computer and use it in GitHub Desktop.
This file contains 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
document.querySelectorAll('*').forEach( | |
function(domTarget) { | |
domTarget.addEventListener('click', function(e) { | |
console.log(e.target); | |
e.stopPropagation(); | |
}); | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment