Advertisement
mejpark

JavaScript redirect demo

May 15th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.70 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5.   <script type="text/javascript">
  6.   <!--
  7.  function confirmation() {
  8.        var answer = confirm("Leave my web site?")
  9.        if (answer){
  10.                alert("Bye bye!")
  11.                window.location = "http://www.google.com/";
  12.        }
  13.        else{
  14.                alert("Thanks for staying!")
  15.        }
  16.  }
  17.  //-->
  18.   </script>
  19.   <title>JavaScript confirm choice demo</title>
  20. </head>
  21. <body>
  22.   <form>
  23.     <input type="button" onclick="confirmation()" value="Leave web site" />
  24.   </form>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement