Certain constraints are requiring me to use strictly out of the box JavaScript.
window.setTimeout(function() {
window.location = "https://www.google.com/";
}, 10000);
So the redirect works but it fires the redirect after approx 3000 ms instead of 10000 ms. No matter how long I set the wait time for it always fires the redirect after 3000 ms. This works perfectly in regular web browsers and in mobile chrome. Just not in mobile safari.
Any thoughts?
P.S. I'm not actually trying to redirect to google. I'm just not using the production url.