Wasn't it marcelo who wrote:
>I just get an error when I click "Mostrar":
That's because it uses MSIE proprietary Javascript, which won't run in
browsers that have a decent debugger.
MSIE has the very non-standard behaviour of creating a global Javascript
variable for each HTML Element that has an "id" attribute, so in MSIE
only you can write
<input type=text name="eti" />
...
eti.value=miURL;
In this particular case, the MSIE error reporting is particularly
cryptic. It claims a syntax error on the <body> line when given a date
other than those listed by Hypatia.
I suggest that a good way forward would be to replace
eti.value=miURL;
with the standards-compliant equivalent
document.getElementById("eti").value = miURL;
and debug the page in Firefox.
--
http://econym.org.uk/gmap
The Blackpool Community Church Javascript Team
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---