Is there a link to the "latest" jquery library on Google APIs? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T09:51:48Z http://stackoverflow.com/feeds/question/441412 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/441412/is-there-a-link-to-the-latest-jquery-library-on-google-apis 4 Is there a link to the "latest" jquery library on Google APIs? Nick Pierpoint 2009-01-14T00:08:57Z 2009-11-22T00:25:17Z <p>I use the following for a jquery link in my <code>&lt;script&gt;</code> tags:</p> <pre><code>http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js </code></pre> <p>Just wondered if anyone had discovered whether there's a link to the "latest" version:</p> <p>Something like the following (which doesn't work):</p> <pre><code>http://ajax.googleapis.com/ajax/libs/jquery/latest/jquery.js </code></pre> <p>(Obviously not necessarily a great plan to link your code to potentially changing libraries but useful in development)</p> http://stackoverflow.com/questions/441412/is-there-a-link-to-the-latest-jquery-library-on-google-apis/441429#441429 14 Answer by Brian Fisher for Is there a link to the "latest" jquery library on Google APIs? Brian Fisher 2009-01-14T00:16:33Z 2009-11-22T00:25:17Z <p>You can use:</p> <blockquote> <p><a href="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" rel="nofollow">http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js</a></p> </blockquote> <p>To get the most recent version in the 1.x.x family or you could use:</p> <blockquote> <p><a href="http://ajax.googleapis.com/ajax/libs/jquery/1.2/jquery.min.js" rel="nofollow">http://ajax.googleapis.com/ajax/libs/jquery/1.2/jquery.min.js</a></p> </blockquote> <p>To get the most recent version in the 1.2.x family.</p> <p>EDIT:</p> <p>In case anyone is interested Microsoft is also <a href="http://www.asp.net/ajaxlibrary/cdn.ashx" rel="nofollow">hosting jquery</a>:</p> <p><a href="http://ajax.Microsoft.com/ajax/jQuery/jquery-1.3.2.js" rel="nofollow"><code>http://ajax.Microsoft.com/ajax/jQuery/jquery-1.3.2.js</code></a></p> http://stackoverflow.com/questions/441412/is-there-a-link-to-the-latest-jquery-library-on-google-apis/441553#441553 2 Answer by nc for Is there a link to the "latest" jquery library on Google APIs? nc 2009-01-14T01:17:10Z 2009-01-14T09:46:15Z <p>No. There isn't..</p> <p>But, for development there is such a link on the <a href="http://code.jquery.com/jquery-latest.js" rel="nofollow">jQuery code site</a>.</p> http://stackoverflow.com/questions/441412/is-there-a-link-to-the-latest-jquery-library-on-google-apis/847803#847803 4 Answer by Vilmantas Baranauskas for Is there a link to the "latest" jquery library on Google APIs? Vilmantas Baranauskas 2009-05-11T12:07:58Z 2009-05-11T12:07:58Z <p>Be aware that caching headers are different when you use "direct" vs. "latest" link from google.</p> <p>When using <a href="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js" rel="nofollow">http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js</a></p> <pre><code>Cache-Control: public, max-age=31536000 </code></pre> <p>When using <a href="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" rel="nofollow">http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js</a></p> <pre><code>Cache-Control: public, max-age=3600, must-revalidate, proxy-revalidate </code></pre>