JSFiddle - React, Tailwind, and code Playground

by lechevalierd3on

HTML

<div id="parent">
    
</div>

CSS

div {position: absolute;}
#parent {top:100px; left:100px; width:300px; height:300px}

JavaScript

document.addEventListener('mousemove', picking);

function picking(evt) {
    console.log(evt)
    document.elementFromPoint(2, 2)
}