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',evt.taget);
}, false);
/*
document.querySelector('span')
    .addEventListener('click', function(evt){
        console.log('from SPAN');
}, false);
document.addEventListener('click', function(evt){
    console.log('from DOCUMENT',evt);
}, false); 
*/