Possible Duplicate:
Downloading jQuery CSS from Google's CDN

I'm using Google-hosted jQuery and jQueryUI, but I'm wondering if there are hosted jQueryUI themes anywhere? I'd like to just point to a hosted CSS file (the same way I do with the hosted JS file), so that I don't have to worry about setting up directories for the widget images or the CSS files or anything like that.

Update

I've found this, referenced by the jqueryui.com source code:

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/ui-lightness/jquery-ui.css" type="text/css" media="all" />

Substituting the name of other themes from the themeroller page seems to work, but I'd love it if someone could find where on Google they list all the available themes that they are hosting. I'm not finding anything about this (maybe it is very recent?).

link|improve this question

feedback

closed as exact duplicate by Jeff Atwood Sep 12 '11 at 21:56

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

up vote 226 down vote accepted

They are listed on the jQueryUI blog and updated with every release. Both Google and Microsoft provide CDN hosting for the library and themes.

In general, the URL of each theme CSS file is:

// Google
http://ajax.googleapis.com/ajax/libs/jqueryui/[UI.VERSION]/themes/[THEME-NAME]/jquery-ui.css
// Microsoft
http://ajax.aspnetcdn.com/ajax/jquery.ui/[UI.VERSION]/themes/[THEME-NAME]/jquery-ui.css

I have listed the current (UI version 1.8.17) themes below:

link|improve this answer
2  
Refer to this post to see a preview of the themes with the links included encosia.com/2009/10/11/… – Eduardo Molteni Jan 21 '10 at 19:33
2  
BTW, google also hosts CSS themes for jquery ui 1.8.2 – Xavi Jul 8 '10 at 14:46
5  
+1 for extra credit (listing out all the theme links). Much appreciated. – gnome Mar 18 '11 at 16:58
1  
no minified versions? :( – SalmanPK Feb 15 at 21:24
feedback

It looks like you can also use

http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/ui-lightness/jquery-ui.css

in order to get the latest version 1.

link|improve this answer
4  
Yup. The only downfall with that approach is that Google sets the cache headers for only 1 day, so you lose the benefit of having a cached copy pretty quickly. the cache headers for a specific version are 365 days (last I checked) – Bob Gregor Jul 24 '11 at 9:20
feedback

The jQueryUI demo pages (e.g., http://jqueryui.com/demos/tabs/) show about 22 themes, a few more than 81bronco's list. All of them are available under ajax.googleapis.com.

But that's a heck of way to find out what is available.

link|improve this answer
feedback

On the jQueryUI-ThemeGallery - Homepage (http://jqueryuithemegallery.just-page.de) you can edit and store your own custom jQueryUI-Theme or you can choose a custom-theme (or standard-theme) from the gallery and download it.

link|improve this answer
feedback

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