Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google cdn for jquery themes

I've found the cdn url for jquery ui js file here, but where can I found the theme css file in the cdn. I'm looking for the smoothness theme.

like image 601
user559780 Avatar asked Jan 07 '11 01:01

user559780


People also ask

Is there a CDN for jQuery ui?

CDN is a technical abbreviation for Content Delivery Network. A CDN is a network of servers that distribute information to websites. A jQuery UI CDN therefore enables developers to use jQuery in their websites without having to install it in the website's folder.

What is Google CDN jQuery?

jQuery is a JavaScript library primarily designed with the purpose to make it easier to use JavaScript on our website. jQuery wraps many lines of JavaScript code into methods that we can call with a single line of code. Google provides CDN support for jQuery via the googleapis.com domain.

How do I download a jQuery CDN file?

jQuery's CDN provided by StackPath To use the jQuery CDN, just reference the file in the script tag directly from the jQuery CDN domain. You can get the complete script tag, including Subresource Integrity attribute, by visiting https://code.jquery.com and clicking on the version of the file that you want to use.


1 Answers

You can find the smoothness theme from google cdn in http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/themes/smoothness/jquery-ui.css.

The url is

http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/themes/< themename >/jquery-ui.css

where < themename > is the name of the theme you want.

The i18n file from cdn can be found in http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/i18n/jquery-ui-i18n.min.js

like image 135
Arun P Johny Avatar answered Nov 05 '22 18:11

Arun P Johny