How to displays a dialog box with a message and an OK and a Cancel button (confirm box) in JavaScript

1 Answer

0 votes
var rv = confirm("Select OK or Cancel");
if (rv == true) 
    s = "You pressed OK";
else 
    s = "You pressed Cancel";
 
document.write(s);

/*
run:
 
You pressed OK (I clicked on OK)
   
*/

 



answered Jul 21, 2015 by avibootz
...