google.load - and message "google is not defined" - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T06:20:23Zhttp://stackoverflow.com/feeds/question/1349152http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1349152/google-load-and-message-google-is-not-defined0google.load - and message "google is not defined" NealWaltershttp://stackoverflow.com/users/1602452009-08-28T20:25:28Z2010-01-11T22:04:27Z
<p>What do I need to include to do a google.load() statement?
I'm getting error "google is not defined". </p>
<p>Based on this page, <a href="http://code.google.com/apis/ajax/documentation/#DetailedDocumentation" rel="nofollow">http://code.google.com/apis/ajax/documentation/#DetailedDocumentation</a>
I thought I should add this: </p>
<pre><code><script type="text/javascript"
src="http://www.google.com/jsapi?key=ABCDEFG">
</script>
</code></pre>
<p>But when I did, I get "window.LoadFirebugConsole" is not a function. </p>
<p>Thanks,
Neal </p>
http://stackoverflow.com/questions/1349152/google-load-and-message-google-is-not-defined/1669358#16693580Answer by java for google.load - and message "google is not defined" javahttp://stackoverflow.com/users/2019762009-11-03T18:43:34Z2009-11-03T18:43:34Z<p>you should include this script -- <a href="http://www.google.com/jsapi" rel="nofollow">http://www.google.com/jsapi</a></p>
http://stackoverflow.com/questions/1349152/google-load-and-message-google-is-not-defined/1669642#16696421Answer by Greg Gianforcaro for google.load - and message "google is not defined" Greg Gianforcarohttp://stackoverflow.com/users/1927452009-11-03T19:32:57Z2009-11-03T19:32:57Z<p>Did you include the google jsapi script before adding the load and callback methods? They should be in seperate script blocks.</p>
<pre><code> <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>
</code></pre>
<p>There are additional examples in the <a href="http://code.google.com/apis/ajax/playground/#jquery" rel="nofollow">Google's 'AJAX Api's Playground'</a>.</p>
http://stackoverflow.com/questions/1349152/google-load-and-message-google-is-not-defined/2045300#20453001Answer by sibidiba for google.load - and message "google is not defined" sibidibahttp://stackoverflow.com/users/2325422010-01-11T22:04:27Z2010-01-11T22:04:27Z<p>I had the problem, but I was using:</p>
<p><code><script type="text/javascript" src="http://www.google.com/jsapi" /></code></p>
<p>It was solved by chanching the line to:</p>
<p><code><script type="text/javascript" src="http://www.google.com/jsapi"></script></code></p>