JSFiddle - React, Tailwind, and code Playground
by jonahe
HTML
<div>
<div>
<div>
<div>
test
</div>
</div>
</div>
</div>
CSS
div {
padding: 10px;
background-color: rgba(0, 0, 255, 0.1);
color: red;
}
JavaScript
Array.from(document.querySelectorAll("div")).forEach(el => {
el.onclick = e => {
debugger;
console.log("e", {x: e.clientX, y: e.clientY});
}
})