On Feb 27, 8:21 am, Shifty <[email protected]> wrote:
> Hello,
>
> I have worked A LOT with my map and I am very confused right now. It
> seems that my map is not compatible with IE6-8... or not at least 6 &
> 7... But some times it works.
>
> I really can not find out the problem by my self because I don't have
> enough javascript knowledge to be able to search for the problem.
>
> Here is the address to the map:http://www.oteckskateboards.se/beta

There is a problem with this invalid Javascript:
 -->
around line 67. That's nonsense in Javascript, and you should comment
it
  //-->
A double-minus is an arithmetic operator in Javascript, so --> doesn't
mean anything. I don't know why IE doesn't actually flag an error,
though. The start of an HTML comment, <!--, is a special case in
Javascript.

When I corrected that, I got an "Operation aborted" error in IE6.
That's because your page layout is too complex for IE to handle.
Searching for that error message in the Group will yield many
results.

I think in your case it's because tags are mismatched: you're missing
a closing tag somewhere. Use validator.w3.org to check it -- there
will be many errors, I'm afraid. Also the <!DOCTYPE> directive should
be the very first thing in the file: currently you have a blank line
above that.

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
-~----------~----~----~----~------~----~------~--~---

Reply via email to