I have 2 servers. One which serves static content (abc server) and the other is the application server (def).
The static contents(images,css, js) are served from the assets (apache server) while the application(index.html) is served from a different server.
How do I make the application offline in this case using manifest file.
Right now my manifest file looks like this:
CACHE MANIFEST
CACHE:
http://abc.com/user.js
http://abc.com/jquery-1.6.1.min.js
And in the index.html file located on the def server
<html manifest="test.appcache">
Console output
Document was loaded from Application Cache with manifest http://def.com/test.appcache Application Cache Checking event
The static content doesnt get cached as seen from the console.