Home  >  Article  >  Web Front-end  >  Is There a Specific Link for the \"Latest\" jQuery Version on Google APIs?

Is There a Specific Link for the \"Latest\" jQuery Version on Google APIs?

Linda Hamilton
Linda HamiltonOriginal
2024-10-21 22:37:03256browse

Is There a Specific Link for the

Is There a Specific Link for the "Latest" jQuery Library on Google APIs?

Question:

Developers commonly utilize a specific URL for jQuery's CDN on Google APIs like this:

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

Is there a similar link that provides access to the "latest" version of jQuery? Developers would like a URL like this:

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

Answer:

Up to jQuery 1.11.1:

Prior to jQuery 1.11.1, you could indeed use the following URLs to obtain the latest version:

  • https://code.jquery.com/jquery-latest.min.js (minified version hosted by jQuery)
  • https://code.jquery.com/jquery-latest.js (uncompressed version hosted by jQuery)
  • https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js (minified version hosted by Google)
  • https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js (uncompressed version hosted by Google)

From jQuery 1.11.1 Onwards:

However, beginning with jQuery 1.11.1, both jQuery and Google ceased updating these URLs. They now permanently point to version 1.11.1. Therefore, there is no longer an officially supported URL for accessing the latest version of jQuery.

For an explanation of this decision, please refer to the blog post "Don't use jquery-latest.js."

Additional Notes:

  • Both jQuery and Google support both https and http protocols.
  • Consider using protocol relative URIs for flexibility.
  • For further information, refer to Google's "Speed: Libraries" guide: https://developers.google.com/speed/libraries/devguide

The above is the detailed content of Is There a Specific Link for the \"Latest\" jQuery Version on Google APIs?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn