Link to home
Start Free TrialLog in
Avatar of netformx
netformx

asked on

window.open("mailto:anyaddress") does not work in Netscape

Hi,

I need to in client function call to mailto - to open defaul mail program.
I use:
window.open("mailto:anyaddress")  - works OK in IE
but does not work in Netscape 7.2.
what to do instead?
Avatar of UnexplainedWays
UnexplainedWays

Most code i've seen uses <a href="mailto:anyaddress">Email me</a>

Is there any reason why you need to window.open it?
Why not just a regular mail to link???

<a href="mailto:myaddress@abc.com">Email Me!</a>
Avatar of netformx

ASKER

I need to open mail in client javascript function (when click on Button and not on link).
ASKER CERTIFIED SOLUTION
Avatar of UnexplainedWays
UnexplainedWays

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial