vote up 0 vote down star

What do I need to include to do a google.load() statement? I'm getting error "google is not defined".

Based on this page, http://code.google.com/apis/ajax/documentation/#DetailedDocumentation I thought I should add this:

<script type="text/javascript"
        src="http://www.google.com/jsapi?key=ABCDEFG">
</script>

But when I did, I get "window.LoadFirebugConsole" is not a function.

Thanks, Neal

flag

63% accept rate
I can't define google, but I know it when I see it. ;-) – Craig Walker Nov 3 at 21:08

2 Answers

vote up 0 vote down

you should include this script -- http://www.google.com/jsapi

link|flag
vote up 0 vote down

Did you include the google jsapi script before adding the load and callback methods? They should be in seperate script blocks.

    <script src="http://www.google.com/jsapi?key=ABCDE"></script>
    <script type="text/javascript">

    google.load("jquery", "1");

    // Define our onLoad callback
    function OnLoad(){
      alert("Loaded!");
    }

    google.setOnLoadCallback(OnLoad);
    </script>

There are additional examples in the Google's 'AJAX Api's Playground'.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.