google.load - and message "google is not defined" - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T06:20:23Z http://stackoverflow.com/feeds/question/1349152 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1349152/google-load-and-message-google-is-not-defined 0 google.load - and message "google is not defined" NealWalters http://stackoverflow.com/users/160245 2009-08-28T20:25:28Z 2010-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>&lt;script type="text/javascript" src="http://www.google.com/jsapi?key=ABCDEFG"&gt; &lt;/script&gt; </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#1669358 0 Answer by java for google.load - and message "google is not defined" java http://stackoverflow.com/users/201976 2009-11-03T18:43:34Z 2009-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#1669642 1 Answer by Greg Gianforcaro for google.load - and message "google is not defined" Greg Gianforcaro http://stackoverflow.com/users/192745 2009-11-03T19:32:57Z 2009-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> &lt;script src="http://www.google.com/jsapi?key=ABCDE"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; google.load("jquery", "1"); // Define our onLoad callback function OnLoad(){ alert("Loaded!"); } google.setOnLoadCallback(OnLoad); &lt;/script&gt; </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#2045300 1 Answer by sibidiba for google.load - and message "google is not defined" sibidiba http://stackoverflow.com/users/232542 2010-01-11T22:04:27Z 2010-01-11T22:04:27Z <p>I had the problem, but I was using:</p> <p><code>&lt;script type="text/javascript" src="http://www.google.com/jsapi" /&gt;</code></p> <p>It was solved by chanching the line to:</p> <p><code>&lt;script type="text/javascript" src="http://www.google.com/jsapi"&gt;&lt;/script&gt;</code></p>