I am planning on using Google to download the jQuery lib for both UI and Core. My question is, do they allow me to download the CSS for it or should I have to host it myself?

Also if I use Google to load how should I load other plugins? Can I compress all plugins together or should it be its own separate file?

link|improve this question

62% accept rate
feedback

4 Answers

up vote 159 down vote accepted

The Google AJAX Libraries API, which includes jQuery UI, also includes popular themes as per the jQuery UI blog:

CSS framework and themes on Google AJAX Libraries API

As before, the latest stable release of jQuery UI (now 1.8) is hosted on Google’s CDN. New in this release, however, Google is also hosting the new jQuery UI CSS Framework, as well as our current suite of pre-built themes: base, black-tie, blitzer, cupertino, dot-luv, excite-bike, hot-sneaks, humanity, mint-choc, redmond, smoothness, south-street, start, swanky-purse, trontastic, ui-darkness, ui-lightness, and vader.

link|improve this answer
URLs for 1.7.2 here: blog.jqueryui.com/2009/06/jquery-ui-172 – Sam Hasler Dec 2 '09 at 17:54
3  
BTW, google is also hosting CSS themes for jquery ui 1.8.2 as well: the-xavi.com/articles/jquery-ui-css-themes-hosted-on-cdn – Xavi Jul 8 '10 at 6:16
1  
Note that these CSS scripts are not currently compressed/minimised, meaning that you could offer reduced size versions (by about 26% according to Google's PageSpeed plugin for Firefox) from your own domain, which might be faster for your users if your connection is decent and they don't already have the file cached locally. – Drew Noakes Jan 30 '11 at 10:15
14  
every time i want to find this CDN I type "jquery ui css google cdn" and this post is the most direct way to the list of them all.. I just want to thank you +1 – mazlix Jun 9 '11 at 4:36
@Drew: Or he might use Reducisaurus too. :) – Alix Axel Jul 18 '11 at 0:48
show 2 more comments
feedback

Google is hosting jQueryUI css at this link https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery.ui.all.css

If you look at this code directly, it is importing the css using @import which can be slow. You may want to factor the import into its parts to gain a slight performance benefit:

https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery.ui.base.css https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery.ui.theme.css

link|improve this answer
feedback

I would think so. Why not? Wouldn't be much of a CDN w/o offering the CSS to support the script files

This link suggests that they are:

We find it particularly exciting that the jQuery UI CSS themes are now hosted on Google's Ajax Libraries CDN.

link|improve this answer
I tried adding loading it using google load statement...would not load the css....checked it. – coool May 4 '09 at 14:50
5  
here's an example url that seems to work: ajax.googleapis.com/ajax/libs/jqueryui/1.7/themes/smoothness/… – Scott Evernden May 4 '09 at 14:58
feedback

Your page load times will be a factor of googles response time.

link|improve this answer
2  
Not entirely true, if it's cached then it doesn't matter. Also, do you honestly think an individual's web site will have a faster response time than Google's CDN? – Jeffrey Kevin Pry Feb 28 at 23:35
Gotta agree with @Jeffrey here. No way you'll have a faster response time than the resources that Google has. Googles "response" times will not be a factor, IMO. – Ed DeGagne Mar 26 at 20:30
feedback

Your Answer

 
or
required, but never shown

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