Advertisement
virtualideaz

ConfirmBox.html

Apr 4th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head>
  3.     <title>confirm box</title>
  4.     <script>
  5.         function showAnswer() {
  6.         var ans = confirm("Click a button");
  7.             if (ans ==true) {
  8.             document.write("You press Ok");
  9.             }
  10.             else {
  11.             document.write("You press Cancel");
  12.             }
  13.         }
  14.     </script>
  15. </head>
  16. <body>
  17.     <p>click the button</p>
  18.     <button type="button" onclick="showAnswer()" value="Show Answer">Click Me</button>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement