JSFiddle - React, Tailwind, and code Playground
HTML
<div id="test">test hover div</div>
JavaScript
// jQuery mouseover test
// this should pop up an alert when the mouse is over
// BTW I use Google Chrome I'm not sure what browser you're using
$('#test').mouseover(function() {
alert('test');
});