> On your "commas" comment, are you meaning to say the semi-colons that
> are placed in the following lines of the code?
sometimes a comma is just a comma. are you sure you don't remember
formatting code like this:
{ "prop1" : "value 1",
"prop2" : "value 2",
}
anywhere?
and (straying back into territory I know little about), I'd say that
this is wrong:
{ "prop1" : "value 1",
"prop2" : "value 2",
"prop3" : "value 3",
}
while this is right:
{ "prop1" : "value 1",
"prop2" : "value 2",
"prop3" : "value 3"
}
and this will get you into other types of problems:
{ "prop1" : "value 1"
"prop2" : "value 2"
"prop3" : "value 3"
}
but like I say, that's just a guess.
here's another non-API suggestion for you (being that I owe the board
about a million): you might want to look at the z-index of your Client
list dropdown... in IE7 it disappears behind the map div
--
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.