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 got this to work by doing this...
var el = $('#next_proj a').get(0);
var evt = document.createEvent("MouseEvents");
evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
el.dispatchEvent(evt);
Hope it helps...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With