JSFiddle - React, Tailwind, and code Playground
HTML
<div id="searchput">Hover me!</div>
CSS
.cfse_a {
color: red;
}
JavaScript
$("#searchput").hover(function() {
$(this).addClass("cfse_a");
}, function() {
$(this).removeClass("cfse_a");
});