On Jul 28, 9:01 am, Ralph Ames <[email protected]> wrote: > >My map: > > http://www.prog-immobilier-nancy.fr/v2/acheter-maison-appartement-nan... > > The map doesn't work in IE7. > > Error on line 14. > > Ralph
Declare your map variable, probably in the global scope. var map; IE doesn't like it when you use undeclared javasript variables with the same name as the id of html element on your page. It trys to use the html element and gets confused. -- Larry --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
