The problem is that the two times that you call initialize in the body of the page are being run before the DOM finishes loading, so the browser doesn't find the divs you're looking for. You need to rework your script so that those calls aren't being made until the onload event fires.
Jeremy R. Geerdes Effective website design & development Des Moines, IA For more information or a project quote: http://jgeerdes.home.mchsi.com http://jgeerdes.blogspot.com http://jgeerdes.wordpress.com [email protected] Unless otherwise noted, any price quotes contained within this communication are given in US dollars. If you're in the Des Moines, IA, area, check out Debra Heights Wesleyan Church! And check out my blog, Adventures in Web Development, at http://jgeerdes.blogspot.com ! On Mar 21, 2009, at 2:39 PM, Yoann wrote: > > Hi, > I have an error when I use the translation api. > I do not understand why... > You can see my website: http://www.obiies.com/translation.php > Yhanks for your helps! > Yoann > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-AJAX-Search-API?hl=en -~----------~----~----~----~------~----~------~--~---
