JSFiddle - React, Tailwind, and code Playground

HTML

<div id="textboxWorkFlow">
    <input type="text" name="WorkFlowValue" diasabled= id="WorkFlowValue"/>
</div>

JavaScript

$(document).ready(function(){
$("#textboxWorkFlow").mouseover(function(){
alert('Mouse In');
}).mouseout(function(){
alert('Mouse Out');
});
});