On Aug 5, 1:17 pm, Jorge <[email protected]> wrote: > > 'once javascript is deactivated' it can hardly be a question about > 'basic javascript'.
No, it becomes a question about basic HTML, and your use of <noscript> is the way to go. <div id="map" style="..."> <noscript> <img ...> </noscript> </div> The API replaces the content of the map div when it creates it, so it's safe to put stuff in it which you want to show when the API isn't loaded. 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 -~----------~----~----~----~------~----~------~--~---
