JSFiddle - React, Tailwind, and code Playground

HTML

<h1></h1>

CSS

div,h1{
    width:100px;
    height:100px;
    background-color:red;
}

JavaScript

document.addEventListener('click', function(e){
    if(e.target.tagName=='DIV') alert('click');
}, true);
var div = document.createElement("div");
document.body.appendChild(div);