The application I'm developing is built around jQuery Mobile and some Ajax to refresh parts of the page. Like sites that use automatic refresh, I want to stop the refresh after some condition (time/visibility/etc.) so my server isn't bombarded with unneeded requests. The application has a status screen that is commonly checked by the user, and ideally my scripts would know that the browser window has come into focus and it would be a good time to refresh. I've done this before in desktop webapps, but I'm noticing a lot of variation on the mobile side between different platforms and browsers, for example:
- window.onfocus() does/n't fire when the browser gains focus
- window.onfocus() does/n't fire when tabs are switched in a browser
- Javascript is/n't suspended between tab switches and/or switches away from browser
The best I've been able to do so far is a set of heuristics that look at available events + when there was detected user interaction with the page, but it's clunky and results in cases where the user jumps back to the page and has to manually refresh. Not great.
Any clever techniques for solving this?