If browsers with single-pass parsing, like Firefox, consider the function to be undefined, and two-pass browsers, like MSIE, consider the function to be defined, then it means that the function isn't defined *yet*.
Single-pass parsing is more efficient, but can only call functions that have already been defined. The two-pass parsing employed by MSIE causes your code to be parsed twice. On the first pass it finds all the definitions, which are then all available for use on the second pass when the code is executed. -- Mike Williams http://econym.org.uk/gmap --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
