Google Provides Hosting for Popular Ajax Libraries
Google has created the Ajax Libraries API. Basically Google is calling it a content distribution network and loading architecture for the most popular open source JS libraries. These libraries include:
jQuery
prototype
script.aculo.us
MooTools
dojo
If you use the Google JS API, you can do stuff like:
[-]View Code JAVASCRIPT5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<script src="http://www.google.com/jsapi"></script>
<script>
// Load jQuery
google.load("jquery", "1");
// on page [...]