Latest jQuery and jQuery UI Theme links on Google CDN

I have often seen developers asking where to find the jQuery UI Library and the jQuery UI Themes on Google CDN. Well here’s the list [Updated - March 2011]:

jQuery Library -
http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.js

jQuery Library (Minified) - http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js

jQuery UI Library -
http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/jquery-ui.js

jQuery UI Library (Minified) - http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/jquery-ui.min.js

jQuery UI Base CSS - http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/themes/base/jquery-ui.css

jQuery Localization -
http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/i18n/jquery-ui-i18n.min.js

Note: You may also want to read jQuery and jQuery UI Microsoft CDN Links and Visual Studio jQuery Intellisense over CDN


jQuery UI Themes

image

black-tie

image

blitzer

image

cupertino

image

dark-hive

image

dot-luv

image

eggplant

image

excite-bike

image

flick

image

hot-sneaks

image

humanity

image

le-frog

image

mint-choc

image

overcast

image

pepper-grinder

image

redmond

image

smoothness

image

south-street

image

start

image

sunny

image

swanky-purse

image

trontastic

image

ui-darkness

image

ui-lightness

image

vader

You can Bookmark this link and refer it the next time you plan to look out for a jQuery library on Google CDN. If I missed out on any of the links, let me know and I will add it to the list!

8 comments:

  1. Where did you get these links from?
    I only found the links for jquiry and jquiry ui on code.google.com

    ReplyDelete
  2. All these links can be found at different locations on the jQuery and jQuery UI site. They are not accessible from a single location, that's why I thought of posting all the links together.

    ReplyDelete
  3. I wish users would stop giving up the privacy of their users to Google for a little bit of CDN speed. Put your damn library on your own server! It's not likely that you have enough traffic to be really need it to be hosted on a CDN anyway!

    ReplyDelete
  4. Thanks for keeping this list updated! It's a super awesome resource.

    ReplyDelete
  5. To get the latest version automatically (even after the updates), just keep the base version number in the url. For example in the first url replace 1.4.3 with 1 and it'll load 1.4.4
    (latest version) automatically.
    Example: http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js

    - Abhinay (http://web3o.blogspot.com)

    ReplyDelete
  6. @Abhinay Rathore

    If you're using any third party plugins you might not want to link to the "current" version on a production site as an unexpected upgrade could break your plugins.

    ReplyDelete
  7. To access the latest Jquery directly from the source servers JQuery :

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

    Packed : http://code.jquery.com/jquery-latest.pack.js

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

    ReplyDelete