I really appreciate your help Larry :)
I managed to solve the problem:
function updateMarkerPosition(latitud) {
document.getElementById('info').innerHTML=[latitud.lat(),latitud.lng()].join(',');
}
.
.
.
<div id="info" style="display:none"></div>
Thanks again!!!
Ivan
On Jan 14, 6:57 pm, "[email protected]" <[email protected]>
wrote:
> IE doesn't like this:
>
> function updateMarkerPosition(latitud) {
> document.getElementById('jelat').innerHTML = [
> latitud.lat(),
> latitud.lng()].join(', ');
>
> }
>
> <input type="text" name="jelat" id="jelat"/>
>
> I don't think <input> tags work with innHTML in
> IE:http://msdn.microsoft.com/en-us/library/ms533897(v=vs.85).aspx
>
> -- Larry
--
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.