In Internet Explorer 10, how can I manually clear the application cache for a Web page?
-
1Programmatically or manually? – Lior Cohen Mar 28 '13 at 22:33
3 Answers
I'm guessing you figured this out, but you can clear cache in IE10 like so:
Tools-> Internet Options -> Settings (in Browsing history section) -> Caches and databases tab
You should see all sites that currently have caches and you can clear them from here as needed. This is what the window looks like:

- 1,325
- 15
- 16
I can't leave a comment, but I would like to point out that Browser Cache & Application Cache are 2 different things. Although, I can't seem to figure out how to clear appcache in IE even after looking at Microsoft's website.

- 741
- 10
- 26
-
1You are correct that the Browser cache is different than Application Cache, but my answer above is talking about Application Cache... which is what the question is asking for. Did the method I mentioned not work for you? I just checked in IE11, and it looks like it's still in the same place. – developering Mar 04 '14 at 19:50
-
It looks different than when I last read it. I read it before lunch, perhaps that's why... I just tried it,though, & yes, it does work. Sorry about that. I guess hunger makes funny things happen. – Crystal Miller Mar 04 '14 at 20:11
If you want to only clear the application cache without clearing localstorage and indexeddb too (which is advisable if you're just debugging a javascript and have huge indexeddb datastores), I found that you can:
clear the "normal" cache, so you don't risk having the browser picking resources from there after page reload, instead of downloading them from the server
issue
delete applicationCache
in the console of the Development Tools

- 1,773
- 1
- 15
- 21