Javascript examples for Browser Object Model:Location
Location href Property - Set the href value to point to an email address
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">Send mail</button> <script> function myFunction() {/* w ww .j av a 2 s.c o m*/ location.href = "mailto:someone@example.com"; } </script> </body> </html>