On Apr 6, 9:04 pm, Nik <[email protected]> wrote: > I'm about to shoot myself :)http://nike1984.brinkster.net/Map.aspx
The getElementsByTagName error actually occurs in the API code, not your code, and it's followed by a "GMap2 is not defined" in your code. That suggests that Chrome doesn't like your <script> element being outside the <head> of the document and it can't construct the DOM correctly -- or rather, it tries to construct it but you're not helping by giving it invalid HTML. Add a <!DOCTYPE> directive, and an <html> element for starters, and then check that everything is in the right order within each section of the page.http://validator.w3.org/ check?uri=http://nike1984.brinkster.net/Map.aspx&charset=(detect +automatically)&doctype=Inline&group=0 Unfortunately this is guessing. Chrome's debugging tools are rather rudimentary compared to Firebug (although far better than IE's) Andrew --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" 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-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
