JSFiddle - React, Tailwind, and code Playground

by thecodeparadox

HTML

<input id="searchput" type="text">

CSS

.cfse_a {
    border: 1px solid #f00;
}

JavaScript

$('#searchput').hover(function() {
  $(this).toggleClass('cfse_a');
})