If it’s custom, then unfortunately this isn’t something we can support. I’d suggest looking at our code for how we do hovers for mobile –
jQuery(document).on('click', '.animated-overlay > a', function(e) {
var thisLink = jQuery(this);
if (thisLink.hasClass('hovered')) {
return e;
} else {
e.preventDefault();
thisLink.addClass('hovered');
}
});
– Ed