I really like the ability to edit javascript in the chrome debugger however, I find that it can be really problematic getting the debugger to re-fetch the JavaScript from the server.

Sometimes I have to go as far just closing the debugger and reloading the frame works OK - but other times (an dI cannot pin down under what conditions this occurs) I have to clear my temporary internet cache. Sometimes I swear I have to close chrome completely, then clear the cache and then load the page before the debugger finally shows me the most up-to-date script.

(NB. There is no caching of the script by the web server)

I was wondering if anyone knew of a quick and easy way to tell the debugger to invalidate all its javascript and fetch it all anew on page reload?

Thanks in advance

link|improve this question

56% accept rate
feedback

2 Answers

While you are developing your script, try disabling the Chrome cache:

Open settings

Disable the cache

When you reload the page, the JavaScript should now get refreshed.

link|improve this answer
So, does this apply all the time, or only when the debugger is open? – PilotBob Feb 22 at 16:39
only when the Dev Tools are open – Karolis Mar 17 at 0:17
I've had that set all along, and now all of a sudden, I'm stuck with a certain file. Anyone find a solution? – IronicMuffin May 14 at 13:25
feedback

ctrl-f5 quickly clears the cache.

link|improve this answer
3  
ctrl-f5 does not cut the mustard I am afraid. The old javascript file remains in the debugger. – Chris F Aug 17 '11 at 12:41
feedback

Your Answer

 
or
required, but never shown

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