Skip to content Skip to sidebar Skip to footer

Cache Manifest Causes $.getjson To Stop

I am developing a mobile app using HTML5, Javascript, jQuery Mobile, and offline storage. I have a wep app that serves an array of JSON objects to the mobile app (on the same domai

Solution 1:

Try adding * under "NETWORK:" in your manifest file. That way anything not specifically cached will get pulled from your site.

NETWORK:
http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.js
http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.css
http://code.jquery.com/jquery-1.4.3.min.js
js/data.js
js/script.js
*

Post a Comment for "Cache Manifest Causes $.getjson To Stop"