vote up 0 vote down star

I am using jQuery from google CDN.

I looked at the cache-control and it seems the browser should fully cache the jQuery version for a long time.

However when I disable Internet access my webpages stop working. Why? Is it because even though jQuery is cached, the browser still needs to resolve DNS?

flag

68% accept rate
1  
Your browser obviously isn't respecting the cache-control header. – Wooble Oct 22 at 17:16
weird. Now my application is working even though I am offline. Sorry guys. – Roger Oct 22 at 20:05

2 Answers

vote up 1 vote down

Your brower doesn't need to respect the cache-control header. That is mostly used by proxies. If you want to check whether your browser is keeping a local copy of the script, go into offline mode (in your browser) and try if your website still works.

In addition you might want to enable the Firebug (if you're using Firefox) Net panel to see the exact request your browser sends to the server (and what the response is).

link|flag
vote up 0 vote down

There are a few layers of cache. Just because it is cached for a long time doesn't mean it won't ask the server and check to see if it is the latest edition.

Additionally, offline mode in your browser may not even attempt to load files that it determines to be non local.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.