I found the following to be ignored on an IPhone.
setTimeout(function () { ajaxget(notificationElement); }, 10000);
Below is the solution for the delay to be respected.
window.setTimeout(ajaxget, 10000, notificationElement, null);
Inspiring Innovation at the Intersection of Tech and Business
Tag: JavaScript; JQuery
I found the following to be ignored on an IPhone.
setTimeout(function () { ajaxget(notificationElement); }, 10000);
Below is the solution for the delay to be respected.
window.setTimeout(ajaxget, 10000, notificationElement, null);