I have a Webapp that uses the application cache for offline and online access. The problem I'm running into is that some of my users are not seeing updates when I change the manifest file. It works for me and for others, so my only theory is that some ISPs are caching the manifest file.
Has anyone else encountered this?
I don't know of any way to programmatically flush the browser application cache to force the update. window.applicationCache.update() does not seem to do the trick (at least on iPad). The usual trick of adding queryies to the URLs probably would defeat offline behavior.
In desperation I could simply use an unchanging loader page and put all the code in localStorage and do my own updates.