On Sep 30, 8:31 pm, Joshua Lloyd <[EMAIL PROTECTED]> wrote: > Well I have no idea what I did, but I have been working on my map with > an overlay. It was working properly on Firefox 2.x but was giving me > an Operation Aborted message in IE7. > > But for some reason now it seams that the error is gone, however I do > not see my map anymore. I just see my background color. If anyone > can explain what is going on, it would be greatly appreciated. I know > just enough to get myself in trouble. > > Here is the link to the web page.http://www.symhome.net/php/500MileTest.php
The first thing to do with an IE operation aborted issue is to validate your html. You have at least 2 <body> tags (among other things...) http://validator.w3.org/check?uri=http://www.symhome.net/php/500MileTest.php&charset=(detect+automatically)&doctype=Inline&group=0 The next thing to look at would be when your script is running with respect to when the page finishes rendering the DOM. You use a onload function load() but don't define it (that I can see), your script runs inline before the map div is defined. -- 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 -~----------~----~----~----~------~----~------~--~---
