JSFiddle - React, Tailwind, and code Playground

by sandro_paganotti

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');
}, true);

document.querySelector('span').addEventListener('click', function(evt){
    console.log('from SPAN');
}, false);

document.addEventListener('click', function(evt){
    console.log('from DOCUMENT');
}, false);