What is the output of a confirm dialog : Dialog « Window Browser « JavaScript DHTML
- JavaScript DHTML
- Window Browser
- Dialog
What is the output of a confirm dialog
<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
var response = confirm("OK or Cancel.");
alert(response)
</script>
</head>
<body>
</body>
</html>
Related examples in the same category