Recommend on Google

Google has a number of AJAX APIs that you can use in your web pages with no server side code.

// http://www.google.com/jsapi
google.load("jquery", 1);
google.load("jqueryui", 1);
google.setOnLoadCallback(function () {
// ...
});
 

Leave a Comment