Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use the following for a jquery link in my <script> tags:

http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js

Just wondered if anyone had discovered whether there's a link to the "latest" version:

Something like the following (which doesn't work):

http://ajax.googleapis.com/ajax/libs/jquery/latest/jquery.js

(Obviously not necessarily a great plan to link your code to potentially changing libraries but useful in development)

share|improve this question
Wouldn't that cause a problem with browser caching? The browser wouldn't fetch the newest version because the URL hasn't changed. – JoelFan Nov 20 '11 at 18:16
1  
@JoelFan, not necessarily; it depends on the HTTP headers sent along with the file originally, specifically "Last-Modified" and "Expires". See betterexplained.com/articles/…;. – Edward D'Souza Dec 7 '11 at 23:04
AH! I didn't think about the "potentially changing libraries" part! You are right, for development you want the latest, but if you are giving a site to someone that will most likely not update the scripts, better to leave it at the version that works! – BillyNair May 7 at 0:24

12 Answers

up vote 427 down vote accepted

The jQuery API has a number of hosts that have recent and up-to-date versions:

For example:

<script src="http://code.jquery.com/jquery-latest.min.js"
        type="text/javascript"></script>

If you remove the http: prefix, using Google's hosted version of the jQuery API works seamlessly over both secure (https) and insecure (http) connections.

A list of the latest libraries and frameworks (including download links) can be found at scriptsrc.net.

See also: https://developers.google.com/speed/libraries/devguide

share|improve this answer
Glad it helped. Thanks for the correction, I fixed the answer. – Brian Fisher Jan 14 '09 at 16:03
66  
The latest compressed version is available here: code.jquery.com/jquery-latest.min.js – toscho Apr 6 '10 at 2:16
6  
Google is the only one (at this point) offering both http and https versions. Helpful if you're using protocol less URLs to refer to the library. – Mrchief Jan 10 '12 at 16:00
Edit 4 is needed hehe =) What about JQuery UI?? =0 – Metafaniel Apr 3 '12 at 22:33
1  
Check the headers response "Expires". No good caching when loading from Google CDN or jQuery :S – user1087110 Jun 17 '12 at 17:15
show 3 more comments

http://code.jquery.com/jquery-latest.min.js

this is the minified version, always up-to-date

share|improve this answer
14  
Shorter URL: code.jquery.com/jquery.min.js – netvope Dec 31 '10 at 3:22
i wonder why this answer got 22 upvotes while the last one, which contain the same information, got -2 @@ – Chan Le Aug 10 '11 at 18:40
1  
@netvope answer is optimal, I'd say that this is THE best answer – rumoren Nov 14 '11 at 10:47
@ChanLe The first time the answer was provided jQuery didn't have a CDN (which was the point of the question). Now that they have one this URL is just as valid as the Google API option. – Nick Pierpoint Dec 8 '11 at 10:11
@Jacob: If you use this URL from https the result is a site that Chrome will warn This is probably not the site that you are looking for! There is a bug report on jQuery's site about this which they've closed as worksforme but I'm sure some people wouldn't be comfortable to use it as it is... – hippietrail Nov 18 '12 at 1:25

Be aware that caching headers are different when you use "direct" vs. "latest" link from google.

When using http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js

Cache-Control: public, max-age=31536000

When using http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js

Cache-Control: public, max-age=3600, must-revalidate, proxy-revalidate
share|improve this answer
2  
Very true - getting a 'latest' version largely loses one of the major benefits of the CDN, that the library will very likely be already cached (either in the user's browser or in some intermediary cache) – ChrisV Apr 24 '12 at 10:42

Not for nothing, but you shouldn't just automatically use the latest library. If they release the newest library tomorrow and it breaks some of your scripts, you are SOL but if you use the library you used to develop the scripts, you will ensure they will work.

share|improve this answer
There are a couple of times when I really do want the latest, when injecting jQuery into the browser console for instance. – hippietrail Nov 18 '12 at 1:27

If you do this you always have the latest versions.

<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
//<![CDATA[
    google.load("jquery", "1");
    //google.load("jqueryui", "1");
    //google.load("swfobject", "1");
//]]>
</script>

Then call it with:

google.setOnLoadCallback(function(){jQuery(function($) {

// Enter your code block here

});});
share|improve this answer

Yes there is.

http://code.jquery.com/jquery-latest.min.js

share|improve this answer
except that's not really a CDN is it? The question was on the google api (presumed to mean CDN) – jcolebrand Dec 17 '10 at 22:50

Google doesn't allow the reference of jQuery's latest version.
When jQuery changes its major version, then you'll have to change the link.
Media Temple does. Here are the links:
- Development version
- Production (Minified) version.
These links always refer to the latest versions.

share|improve this answer

No. There isn't..

But, for development there is such a link on the jQuery code site.

share|improve this answer
I'd seen that link, which led me to ask about an equivalent one on the "always available" Google link. – Nick Pierpoint Jan 14 '09 at 9:57
1  
It's on a CDN; jQuery CDN (via Media Temple), but the answer may have been true in early 2009. – Joel Purra Jun 13 '12 at 20:31

jQuery also doesn't allow you to call their latest file over SSL, a consideration if you want to use jQuery in a shopping cart etc.

e.g.

<script type="text/javascript" src="https://code.jquery.com/jquery-latest.min.js"></script>

will give you a security error.

Google's API will let you call over SSL:

<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
  google.load("jquery", "1.7");
</script>
share|improve this answer
Why aren't you using google.com/jsapi directly instead of the http version when you are interested in secure communication? – Christian Jan 14 at 13:56

What about this one?

http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js

I think this is always the latest version - Correct me, if I'm wrong.

share|improve this answer
That works, it is noted already in the accepted answer though. – Scott Sep 19 '12 at 12:50
The latest version for the 1.x family, to be correct. – bažmegakapa Sep 22 '12 at 11:54

Here's a page where you can find links to the latest versions of jQuery, jQueryUI and Themes for Google and Microsoft CDN's. This page automatically updates with the latest links from the CDN. http://lab.abhinayrathore.com/jquery_cdn/

share|improve this answer
3  
Welcome to Stack Overflow! Thanks for posting your answer! Please be sure to read the FAQ on Self-Promotion carefully. Also note that it is required that you post a disclaimer every time you link to your own site/product. – Andrew Barber May 14 '12 at 20:59

you can use as latest version jquery library

Google Ajax API CDN (Also supports SSL via HTTPS)

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2"></script>
/jquery.min.js
    <script type="text/javascript" src="http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery"></script>

Microsoft CDN (Also supports SSL via HTTPS)

Ajax CDN Announcement, Microsoft Ajax CDN Documentation 

jQuery CDN (via Media Temple)

<script type="text/javascript" src=" http://code.jquery.com/jquery-1.7.2.min.js"></script>
 Minified version
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.js"></script>
 Development (Full) version 
share|improve this answer
2  
I don't think you understand the OP request. When 1.73 comes out, your code above won't give the OP the latest. The OP is wondering if Google is hosting a CDN of the latest, rather than having to explicitly mention a version. – Volomike Aug 20 '12 at 21:19

protected by bažmegakapa Sep 22 '12 at 11:53

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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