JSFiddle - React, Tailwind, and code Playground

HTML

<div  style="z-index: 2; position:absolute; top:5"> <input id="text" type="text"/></div>
<div style="z-index: 1; position:absolute; top:0 "><input id="button" style="width:200px; height:40px; text-align:right" type="Button" value="button"/></div>

JavaScript

$("#text").click(function(){
    alert("text clicked");
});
$("#button").click(function(){
    alert("button clicked");
});