I am loading jQuery UI as

google.load("jqueryui", "1.8.6");

from the Google CDN And I want the theme UI Darkness to be associated with it. Any other methods other than

<link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/ui-darkness/jquery-ui.css" />

Something like

google.load("jqueryui", "1.8.6","{theme: 'UI-Darkness'}");
link|improve this question

related: stackoverflow.com/q/1348559/164552 – rwilliams Nov 18 '10 at 20:58
feedback

1 Answer

up vote 2 down vote accepted
+50

So far google loader doesn't support this syntax for jqueryui, you can check the documentation here.

http://code.google.com/intl/zh-CN/apis/loader/#GoogleLoad

I think refer to the link in a tag is still the best way in your case.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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