On Oct 27, 11:20 am, Max Bell <[EMAIL PROTECTED]> wrote:
> Hi all. I'm desperate!!!
>
> I have an IE6 bug and I can't find it.
You have your script inside a table. IE doesn't sort out table
elements and give them a size until it reaches </table>, but your
script is executed before then. So the table and all its elements has
zero size. Your map is there, but has zero size.
Solution 1: move your script calls outside the table.
Solution 2: remove this line
<script>GLoad("msk" );</script>
and use
<body onload="GLoad('msk');" onunload="GUnload()">
I would not recommend the use of any function starting with a capital
G, like GLoad. You could overwrite something provided by Google.
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
-~----------~----~----~----~------~----~------~--~---