vote up 2 vote down star

While browsing the code of some websites I sometimes notice that some JavaScript files are included like this:

  <script type="text/javascript" src="javascripts/jquery.js?1252521516"></script>

But I don't see what the jquery.js ?1252521516 part of the src parameter does. Can anyone explain this to me please?

flag

4 Answers

vote up 4 vote down check

It allows websites to force browsers to update their cached version of a script or other resource.

For example, when the Javascript code on that website changes, the number at the end would be changed. The browser would see as a totally new file, meaning it would not use whatever outdated, cached version it had previously downloaded. This gives you all the benefits of caching with the ability to bypass the cached version at any time.

link|flag
Ahh that's brilliant! Thank you, learn something new everyday! – James Brooks Oct 31 at 22:35
I agree, its a normal "trick" to force the client browser to request the file again for every pagevisit. But that should only be used in development, as I believe it generates unneccessary webtraffic on a production server. – BerggreenDK Oct 31 at 22:35
Note: you can point src="any-script-file.extension" too, so src="dynjs.php" or "dynjs.asp" is valid too – BerggreenDK Oct 31 at 22:36
@BerggreenDK: In the scenario I mentioned, bandwidth will actually be saved. The random number in the query string can stay the same for months, which means the browser will happily go on using the cached version of the file. This results in zero traffic to the server for that resource. Then one day, the file is updated and the random number changes, so the browser requests (and caches) a new copy of the file. Your scenario is an equally valid use of this technique. If a developer is doing this, it is presumably for a very good reason (stale caches can be a real pain with real-time data). – William Brendel Oct 31 at 22:45
Well my original thought after finding out what it is, was to add some PHP to generate a random number at the end, but web-traffic is a problem. – James Brooks Nov 1 at 2:40
show 1 more comment
vote up 1 vote down

Probably some way to avoid caching (the 1252521516 part is generated each time the page is loaded), but I don't see why this is used for jquery

link|flag
They either updated to a new version of the library or their build script just appends it to every file since it was coded badly. – epascarello Nov 1 at 2:24
vote up 1 vote down

The purpose of the query string is to prevent browsers from caching an old version of the file. Whenever the file is updated, the number in the query string is changed to force the browser to download the new version instead of using the one in its cache.

link|flag
vote up 2 vote down

It's known as a cache breaker. It stops the browser using an old version of your javascript due to caching rules.

link|flag

Your Answer

Get an OpenID
or

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