views:

51

answers:

1

I want to autoload Google Maps 3, JQuery core (1.3.2) and JQuery UI (1.7.2).

So I am using the following URL:

http://www.google.com/jsapi?autoload={ "modules":[ {name:"maps",version:3,other_params:"sensor=false"}, {"name":"jquery","version":"1.3.2"}, {"name":"jqueryui","version":"1.7.2"} ]}

However, if you go to that URL, it appears that in addition to what I want to load ... it's also loading: scriptaculous, feeds, and books

Any ideas when the Google autoload is loading more than what I'm telling it to load?

A: 

You can always load the javscript files directly from google. See

http://code.google.com/apis/ajaxlibs/documentation/

For the above it would be like

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"
    type="text/javscript"></script>

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