JSFiddle - React, Tailwind, and code Playground
by doug65536
HTML
<a href="#">Hover me</a>
JavaScript
$(function () {
$('a').hover(function () {
$(this).text("You are hovering!");
},
function () {
$(this).text("Hover me!");
});
});