I think it's got something to do with event propagation. If you create
a function to stop event propagation, the default action is prevented
in the Chrome InfoWindow:

function stop(event) {
   if (event.stopPropagation) {
     event.stopPropagation();
   }
}

<a onclick="stop(event);return false;" href="url">link</a>

...

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" 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-js-api-v3?hl=en.

Reply via email to