JSFiddle - React, Tailwind, and code Playground

by NerfAnarchist

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');
});