JSFiddle - React, Tailwind, and code Playground

HTML

<div id="foo">disco</div>

CSS

#foo {
    background: yellow;
}

JavaScript

$("#foo").on("hover",function(e) {
    console.log(e);
});