JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#">Ссылка</a>
<button>Кнопка</button>
JavaScript
function mobileHover() {
$('a, button').on('touchstart', function(){
alert('hovered');
$(this).trigger('hover');
});
}
mobileHover();