Google Hosts Javascript Libraries So You Don’t Have To
27 May
Just found this on google code – google hosts popular javascript libraries that you can load on your site using their ajax API. They call this their AJAX Libraries API. Some of the libraries they host:
Loading a library is dead simple:
<script src="http://www.google.com/jsapi"></script> <script>google.load("jquery", "1");</script>
And the cool part is, you can load different versions of the libraries, notice the second parameter in the google.load() call.

Recent Comments