For accessibility purposes we have a few buttons like:
$(".class").on('click touch touchstart touchend', function () { });
So this covers both desktop and mobile. The problem is you have to triple tap in IOS (with voiceover) to fire the event.
Is there a way that you can fire the event on a double tap either by tapping the object directly or by swiping to it?
Because you can swipe between objects, you should be able to swipe to the object and then double tap - but nothing I try does this?
Any suggestions?