Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Insert jQuery's UI into page using Google

Hey All, I currently use Google's API to include jQuery into my sites like this:

<script src="http://www.google.com/jsapi"></script>
<script>google.load("jquery", "1.3.2");</script>

How would I accomplish the same for the jQuery UI javascript and css files?

like image 231
cointilt Avatar asked Jun 30 '09 18:06

cointilt


1 Answers

For the jQuery UI:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>

This is the latest version.

like image 155
George Claghorn Avatar answered Sep 30 '22 06:09

George Claghorn