JSFiddle - React, Tailwind, and code Playground

by Oleh Kotsubko

HTML

<a href="#">Ссылка</a>
<button>Кнопка</button>

JavaScript

function mobileHover() {
    $('a, button').on('touchstart', function(){
    alert('hovered');
        $(this).trigger('hover');
    });
}

mobileHover();