vote up 3 vote down star
3

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)

flag

3 Answers

vote up 12 vote down check

You can use:

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

To get the most recent version in the 1.x.x family or you could use:

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

To get the most recent version in the 1.2.x family.

link|flag
Thanks Brian, that's just what I was after. I think your last edit isn't quite complete - if you get rid of the extra "or you could use" at the end I can accept your answer. Thanks again. – Nick Pierpoint Jan 14 at 9:58
Glad it helped. Thanks for the correction, I fixed the answer. – Brian Fisher Jan 14 at 16:03
vote up 3 vote down

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
link|flag
vote up 1 vote down

No. There isn't..

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

link|flag
I'd seen that link, which led me to ask about an equivalent one on the "always available" Google link. – Nick Pierpoint Jan 14 at 9:57

Your Answer

Get an OpenID
or

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