Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

how to clear browser cache and history via javascript I found some links like:-

How to clear browser history oan clear cache?

how to clear browser hash history in javascript

but they do not properly described on how this can be achieved via javascript ( or jQuery)

I require this so that the user do not have to do a [Ctrl+F5] or manually clear cache and the most recent version of javascript file is loaded in the browser.

The main aim is to load the latest javascript files every time the user visits the website. My application in ASP.NET MVC based and javascript files are included in .csHtml file.

share|improve this question
4  
A browser cache is maintained by the browser, not by JavaScript. – Bergi Jan 25 at 14:51
1  
As @Bergi says, i don't think this is possible. you can however make the current cache invalid, which will cause to load you new updated files. – MrMichael Jan 25 at 14:53
Use proper caching headers to begin with. Rename or add query strings to the files when they are updated. – epascarello Jan 25 at 14:54

closed as not a real question by undefined, Ricardo Lohmann, Ed Heal, jeremyharris, Kuf Jan 25 at 18:11

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 5 down vote accepted

There are other ways to prevent a JavaScript file (or other files) from being cached.

Simply append some dummy parameters to the end of the url. For example -

http://www.yourCoolSite.com/resources/js/main.js?r=SOME_RANDOM_VALUE

You would optimally do this on the server side. In PHP, this would look something like this -

echo "http://www.yourCoolSite.com/resources/js/main.js?r=".time();

Using the time() function, we append the current epoch timestamp to the URL and therefore guarantee* that the file will appear different to the browser each time.

* Until 2038 that is ;)

share|improve this answer
1  
.htaccess may be cleaner, but this works when that isn't an option. – Jeffrey Sweeney Jan 25 at 14:54
6  
Or instead of SOME_RANDOM_VALUE you could append a hash of the file, this way, it does only get updated when there is something new. – MrMichael Jan 25 at 14:54
1  
@mrm - that's a great tip! You should add your own answer giving an example... – Lix Jan 25 at 14:56
1  
Perhaps slightly off-topic, but could you explain why it is only until 2038? Will the data type overflow in 2038 because too much seconds have past since 1/1/1970? – 11684 Jan 25 at 14:57
1  
@116 - Pretty much :P The 2038 "problem" is pretty much just another Y2K bug ;) – Lix Jan 25 at 14:59
show 6 more comments

call window.location.reload(true) for a ctrl+F5 from script. :)

share|improve this answer
But does that really ignore cached versions of the files of that location? – 11684 Jan 25 at 15:15
yes it does indeed. check msdn.microsoft.com/en-us/library/ms536691%28VS.85%29.aspx – Avishek Jan 25 at 15:17
Then this is brilliant! +1 – 11684 Jan 25 at 15:38
accepting the answer would have been a lot better way to thank ;) Anyways, Happy to help :) – Avishek Jan 25 at 15:43
I'm not the OP, otherwise I would have done that. – 11684 Jan 25 at 22:25
show 1 more comment

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