I'm building a simple Google Web Designer page where, on a PC, you can hover over an element, which then displays a picture and text via a group, then if you click, it will take you to another page.
However, on a mobile device, you can't hover (mouseover) so when you touch the element, you are immediately taken to the next page without the picture and text being displayed via the mouseover event. I've tried other events such as 'mousedown', but they all seem to be fired as soon as you tap oon a mobile device.
Is there any way to ensure that the first time the element is tapped on a mobile device, the group is displayed, then the second time it is tapped, the 'click' event is fired? Alternatively if this is difficult, it would be preferable for only the mouseover event to be fired on a mobile device rather than 'click'.
Thanks for any help!