vote up 0 vote down star
1

how to clear the cache in javascript?

We deployed the latest JavaScript code but we unable to get the latest javascript code

Can anyone help us?

flag
This confuses me: "We deployed the latest javascript code but we unable to get the latest javascript code" – streetpc Jun 18 at 9:04
3  
I guess you mean, how to force client browsers to use your latest version of javascript and not their cached version - in that case you need Greg's answer. If you want to know how to do it in your own browser, it's David Johnstone's answer. – Benjol Jun 18 at 9:08

6 Answers

vote up 1 vote down

Ctrl + F5 isn't working?

It depends on what browser you're using, but in Firefox you can clear the cache with Tools -> Clear Private Data...

link|flag
vote up 16 vote down

You can't clear the cache with javascript. A common way is to append the revision number or last updated timestamp to the file, like this:

myscript.123.js

or

myscript.js?updated=1234567890

link|flag
vote up 6 vote down

Try changing the JavaScript file's src? From this:

<script language="JavaScript" src="js/myscript.js"></script>

To this:

<script language="JavaScript" src="js/myscript.js?n=1"></script>

This method should force your browser to load a new copy of the JS file.

link|flag
Thanks now its working fine. – subramani Jun 18 at 9:16
vote up 0 vote down

I tend to version my framework then apply the version number to script and style paths

<cfset fw.version = '001' />
<script src="/scripts/#fw.version#/foo.js"/>
link|flag
1  
cfset? What is that? – AnthonyWJones Jun 18 at 9:34
cfset - livedocs.adobe.com/coldfusion/6/… – Vijay Dev Sep 15 at 17:26
vote up 0 vote down

You can also force the code to be reloaded every hour, like this, in PHP :

<?php
echo '<script language="JavaScript" src="js/myscript.js?token='.date('YmdH').'">';
?>
link|flag
vote up 1 vote down

Here's a snippet of what I'm using for my latest project.

From the controller:

if ( IS_DEV ) {
    $this->view->cacheBust = microtime(true);
} else {
    $this->view->cacheBust = file_exists($versionFile) 
    	// The version file exists, encode it
    	? urlencode( file_get_contents($versionFile) )
    	// Use today's year and week number to still have caching and busting 
    	: date("YW");
}

From the view:

<script type="text/javascript" src="/javascript/somefile.js?v=<?= $this->cacheBust; ?>"></script>
<link rel="stylesheet" type="text/css" href="/css/layout.css?v=<?= $this->cacheBust; ?>">

Our publishing process generates a file with the revision number of the current build. This works by URL encoding that file and using that as a cache buster. As a fail-over, if that file doesn't exist, the year and week number are used so that caching still works, and it will be refreshed at least once a week.

Also, this provides cache busting for every page load while in the development environment so that developers don't have to worry with clearing the cache for any resources (javascript, css, ajax calls, etc).

link|flag

Your Answer

Get an OpenID
or

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