JSFiddle - React, Tailwind, and code Playground

HTML

<div id="normal">MOOO</div>
<div id="floater"></div>

CSS

#normal {
    background: black;
    width:200px;
    height: 200px;
}

#floater {
    position:fixed;
    top: 50px;
    left:50px;
    background: yellow;
    width:100px;
    height:100px;
    pointer-events: none;
}

JavaScript

$("#floater").click(function() {
    alert("moo");
});