On 6 June 2011 00:30, MBeis <[email protected]> wrote: > I am new to API v3. Can anybody help me find out why this map example > displays fine in IE 8 and 9 but not in Firefox 4? In FF, the page is just > blank.
I get an error: attachSecretMessage is not defined. Don't you see that error? You need to define functions before you use them. IE parses all the code before it starts to use it, so it's sorted out all references right at the start; Firefox is more efficient and only does a single pass through the code. But that means that it hasn't encountered your function when you use it. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-js-api-v3?hl=en.
