On Jan 26, 7:31 am, Derek Tonn <[email protected]> wrote:

>
> MSIE still doesn't like the "<>" characters in line 58 of the
> mashup.htm code, but it will at least allow for the display of the
> info when clicking on "Compatibility View."  Everything else seems
> okay...although if anyone else notices any problems with the code that
> we can tighten up (for me or others using this same code for their own
> purposes), I would love to hear from you.  Thanks everyone!  - Derek

I get an error in IE7 because your objects have trailing commas.
Firefox doesn't mind this:
{ "prop1" : "value 1",
  "prop2" : "value 2",
}
but IE interprets the last comma as *introducing* another element,
which isn't there.

That means that in this loop
  for (var i = 0; i < data.client.length; i++) {
"data" is undefined. It never gets to call createMarker() and line 58.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API V2" 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