Just add: cursor: pointer
to your <a>
link a problem solved!
In the following code, a fancybox link is dynamically clicked to open up a fancybox gallery. This works fine in Chrome, Safari, Firefox etc. However on iOS, ipad, iphone, etc, it does not.
$(document).on('click', '.item .img-link', function(){
var $me = $(this),
myTargetRel = $me.data('target'),
$myTarget = $('#item-images a[rel=' + myTargetRel + ']');
$myTarget.click();
});
How do I get this working for iOS?
Thank you!