jQuery cdn

You can include jQuery from Google CDN hosting (content delivery network)

jQuery 1.x.x latest:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

jQuery 1.10.x latest:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10/jquery.min.js"></script>

jQuery 1.10.2:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>

jQuery UI 1.x.x latest:

<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1/jquery-ui.min.js"></script>

jQuery UI 1.10.x latest:

<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10/jquery-ui.min.js"></script>

jQuery UI 1.10.3:

<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>

jQuery UI CSS styles 1.x.x latest (smoothness theme):

<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/smoothness/jquery-ui.css" rel="stylesheet" />

jQuery UI CSS styles 1.10.x latest (smoothness theme):

<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10/themes/smoothness/jquery-ui.css" rel="stylesheet" />

jQuery UI CSS styles 1.10.3 (smoothness theme):

<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet" />

Other jQuery UI themes for ver.1.10.3: base, black-tie, blitzer, cupertino, dark-hive, dot-luv, eggplant, excite-bike, flick, hot-sneaks, humanity, le-frog, mint-choc, overcast, pepper-grinder, redmond, smoothness, south-street, start, sunny, swanky-purse, trontastic, ui-darkness, ui-lightness, and vader.

Sometimes you need to include only part of the styles. All styles you can find here (you may look inside the code and include only part of the styles):

<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery.ui.all.css" rel="stylesheet" />

You may include only tabs styles, for example:

<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery.ui.tabs.css" rel="stylesheet" />

1 thought on “jQuery cdn”

Leave a Comment