JSFiddle - React, Tailwind, and code Playground
by nickxbs
HTML
<a href="http://www.google.com" target="_blank">
<span>hello</span>
</a>
<div>And.. hello!</div>
JavaScript
document.querySelector('a')
.addEventListener('click', function(evt){
console.log('from A');
}, false);
document.querySelector('span')
.addEventListener('click', function(evt){
console.log('from SPAN');
}, false);
document.addEventListener('click', function(evt){
console.log('from DOCUMENT');
}, false);