Previous | Home | Next |
Step 1. Written below code in your application.
<html> <head> <script type="text/javascript"> function show_box() { var r=confirm("Press a button"); if (r==true) { alert("You pressed OK!"); } else { alert("You pressed Cancel!"); } } </script> </head> <body> <input type="button" onclick="show_box()" value="Confirm box" /> </body> </html>
Step 2. Run the Application. Click on Button.
Previous | Home | Next |