I have stumbled upon a bug in Safari on iPad.
$('#next_proj a').trigger('click');
.. does not seems to click on the actual link.
Any clues?
|
I have stumbled upon a bug in Safari on iPad. $('#next_proj a').trigger('click'); .. does not seems to click on the actual link. Any clues? |
|||
|
|
|
It may not be a bug. My guess is that they did not want to allow javascript emulated user clicks. |
|||
|
|
|
I got this to work by doing this...
Hope it helps... |
|||
|
|
|
Have you tried triggering a touch event instead of a click event? Not sure how you would implement in jquery - but it isn't too complicated in plain js
|
|||
|
|