javascript - How to turn off caching on Firefox? -


during development have "clear cache" in firefox time in order make use latest version of javascript files.

is there kind of setting (about:config) turn off caching javascript files? or, if not, files?

enter "about:config" firefox address bar , set:

browser.cache.disk.enable = false browser.cache.memory.enable = false 

if developing locally, or using html5's new manifest attribute may have set following in about:config -

browser.cache.offline.enable = false 

Comments

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -