Google.Load jQuery UI Specific CSS

I load jQuery user interface as

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

from Google CDN And I want the UI Darkness theme to be related to it. Any other methods except

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

Sort of

 google.load("jqueryui", "1.8.6","{theme: 'UI-Darkness'}"); 
+4
source share
1 answer

While the Google downloader does not support this syntax for jqueryui, you can check the documentation here.

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

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

+2
source

All Articles