--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-we...@googlegroups.com.
To unsubscribe from this group, send email to google-web-tool...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
It looks like this is the intended behavior. When I load the following
via the file:// protocol, I can duplicate the effect. If I remove the
TARGET attribute, it does not change the url.
====
<head>
<title>mailto test</title>
</head>
<body>
<a target="_blank" href="mailto:jchi...@example.com">click here</a>
</body>
====
You might try removing the HREF attribute, adding an onClick handler,
that either
1) calls window.open to the appropriate URL;
or
2) creates an IFRAME and sets its URL to the appropriate value in the
onClick handler;