I am working on a mobile application that needs to poll a web service on a regular interval (using setInterval). I have made a prototype based on HTML5, but when the mobile browser goes in the background, javascript execution is suspended.
I looked into creating native apps for iOS and Android. On iOS this can be done by asking for a limited amount of processing time when the application enters background mode. On Android I guess I would have to make a service that is started and stopped from the application.
However, I see that in Safari on iOS5, web workers support is back, and that this has already been supported in the Android browser for a while. This makes me wonder, can I use web workers to run javascript in the mobile browsers when they are in the background?