Linked Questions
134 questions linked to/from Disabling Chrome cache for website development
1
vote
3
answers
7k
views
How do I truly prevent cache in Chrome? [duplicate]
Possible Duplicate:
disabling chrome cache for website development
I'm working on a web app that is unfortunately built around frames. Before switching to Chrome, I used the web developer toolbar ...
0
votes
1
answer
1k
views
Disabling cache for website development [duplicate]
Possible Duplicate:
disabling chrome cache for website development
I am modifying a site's appearance (css modifications) but can't see the result on chrome because of annoying persistent cache. I ...
0
votes
1
answer
355
views
how to stop google chrome cache mechanism [duplicate]
I need to stop/kill the cache mechanism of google chrome browser when I am doing css and js work around a page
there is a trick
you can open chrome devtools and since the devtools is open
then ...
0
votes
2
answers
180
views
Why does my JQuery click event won't work? [duplicate]
I'm trying to link this button with #analyzebutton id
<div class="pd-upload-foto">
<div class="vertical-center text-center">
<button id="...
722
votes
31
answers
645k
views
How can I force clients to refresh JavaScript files?
We are currently working in a private beta and so are still in the process of making fairly rapid changes, although obviously as usage is starting to ramp up, we will be slowing down this process. ...
273
votes
16
answers
208k
views
How to force Chrome's script debugger to reload javascript?
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 ...
304
votes
12
answers
115k
views
Prevent RequireJS from Caching Required Scripts
RequireJS seems to do something internally that caches required javascript files. If I make a change to one of the required files, I have to rename the file in order for the changes to be applied.
...
426
votes
4
answers
126k
views
What's the difference between "Normal Reload", "Hard Reload", and "Empty Cache and Hard Reload" in Chrome?
I recently discovered this new feature in Chrome:
I can figure out the difference between option 1 and option 3, and that option 2 is probably something in between, but I can't find any more precise ...
108
votes
17
answers
259k
views
Force browser to refresh CSS, JavaScript, etc [duplicate]
I'm developing a website based on WordPress source code through XAMPP. Sometimes I change the CSS code, scripts or something else and I notice my browser takes time to apply the modifications. This ...
155
votes
5
answers
224k
views
How to prevent http file caching in Apache httpd (MAMP)
I am developing a single page Javascript application in MAMP. My JavaScript and HTML template files are getting cached between requests.
Is there a simple way to indicate in MAMP that I want to ...
152
votes
2
answers
65k
views
Chrome browser reload options new feature
I found this new feature in Chrome today. When you hover over the refresh button you get this tooltip saying: "Reload this page, hold to see more options" and when I do it I get these three ...
24
votes
8
answers
26k
views
Refreshing Google Maps API V3 Layers
I've been having trouble getting Google Maps API v3 to update correctly. I've got a javascript timer running that should be refreshing the traffic layer periodically but I'm not seeing it happening.
...
11
votes
3
answers
17k
views
Force browser to refresh javascript code while developing an MVC View?
Pretty straight-forward, I'm developing an MVC5 application and have noticed (lately) that my Browser appears to be caching the JavaScript code I have on the view within @section Scripts { }.
...
18
votes
4
answers
27k
views
How to totally prevent HTTP 304 responses in Connect/Express static middleware?
At times during development, it would be really nice to prevent HTTP 304 responses (in favor of 200's), and cause the Connect/Express static middleware to read every response from the filesystem, ...
20
votes
3
answers
10k
views
Debugging when using require.js cache
Using require.js I noticed that often the dependencies are cached by the browser and don't get updated even if I force the page to completely reload (command+shift+R).
In order to have always the ...