Skip to content Skip to sidebar Skip to footer

Html5 Application Cache On Ipad Not Working

I am designing on offline html5 application, which works fine in desktop browser(IE, Chrome, Safari etc) and supports offline capability. The same application will not work in iPad

Solution 1:

The problem in my cache manifest was 1. I specify the homepage as "/" that need to be cached.

The above works fine on all browsers except on iPad which throws error. I have removed the "/" that represent home page from the cache section. It works fine now on all the browsers including iPad.

Solution 2:

  1. Ensure the cache.manifest file only uses relative URLs not ABSOLUTE.
  2. Ensure the cache.manifest was saved in right charset in your IDE/Text redactor
  3. Don't include page where cache.manifest is inited (page with <html manifest="cache.manifest">)

Post a Comment for "Html5 Application Cache On Ipad Not Working"