Why does Google Chrome take so long to refresh local files? Anyway to improve?
I know this is old, just wanted to let you know what fixed it for me.
If you're hosting locally, your code may look something like this:
src="//code.jquery.com/jquery-1.11.3.min.js"
Add in the http:
to the src
attribute or chrome is going to look for the jQuery library locally.
src="http://code.jquery.com/jquery-1.11.3.min.js"
Found it was because I was linking out to Googles hosted JQuery library. It doesnt like loading that from local for some reason.