Conform Message In Java Script

  1. <html>  
  2.   
  3. <head>  
  4.     <script type="text/javascript">  
  5.         function disp_confirm() {  
  6.             var r = confirm("Press a button");  
  7.             if (r == true) {  
  8.                 document.write("You pressed OK!");  
  9.             } else {  
  10.                 document.write("You pressed Cancel!");  
  11.             }  
  12.         }  
  13.     </script>  
  14. </head>  
  15.   
  16. <body> <input type="button" onclick="disp_confirm()" value="Click" /> </body>  
  17.   
  18. </html>