JSFiddle - React, Tailwind, and code Playground
by kirito0709
HTML
<a href="">Ссылка</a>
CSS
a:hover {color: red}
JavaScript
$('a').on('mouseenter', function(event){
alert(event.type);
});
setInterval(function() {
$('a').trigger('mouseenter');
}, 3000)