It seems if I’m scrolling the window, the window.setInterval doesn’t get attached / fired while the scrolling is happening or after. Has anyone else seen the same issue?
I mean…
- What could be causeing this?
- What can I do to fix this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
iOS halts almost everything in response to user touch to guarantee it feels responsive. The setInterval issue is known, and there doesn’t appear to be a workaround.
setInterval pauses in iphone/ipad (mobile Safari) during scrolling
EDIT
During the “freeze” the timer will not catch up once the user releases the screen. The missed events are not deferred, but lost entirely (a bug).