JSFiddle - React, Tailwind, and code Playground

HTML

<div id="textboxWorkFlow">
@Html.TextBoxFor(m => m.WorkFlowValue, new { @class = "col8 last right status-field", disabled = "disabled" })
</div>

JavaScript

$(document).ready(function(){
$("#textboxWorkFlow").mouseenter(function(){
alert('mouse In');
}).mouseleave(function(){
alert('Mouse Out');
});
});