Javascript examples for Browser Object Model:Location
Location href Property - Set the href value to point to another web site:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">Send mail</button> <script> function myFunction() {//from w w w.ja v a2 s . com location.href = "http://google.com"; } </script> </body> </html>