Window confirm() Method

Clash Royale CLAN TAG#URR8PPP
<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
Window confirm() Method
❮ Window Object
Example
Display a confirmation box:
confirm("Press a button!");
Try it Yourself »
More "Try it Yourself" examples below.
Definition and Usage
The confirm() method displays a dialog box with a specified message, along with an OK and a Cancel button.
A confirm box is often used if you want the user to verify or accept something.
Note: The confirm box takes the focus away from the current window, and forces the
browser to read the message. Do not overuse this method, as it prevents the user
from accessing other parts of the page until the box is closed.
The confirm() method returns true if the user clicked "OK", and false otherwise.
Browser Support
| Method | |||||
|---|---|---|---|---|---|
| confirm() | Yes | Yes | Yes | Yes | Yes |
Syntax
confirm(message)Parameter Values
| Parameter | Type | Description |
|---|---|---|
| message | String | Optional. Specifies the text to display in the confirm box |
<!--
mid_content, all: [300,250][336,280][728,90][970,250][970,90][320,50][468,60]-->
Technical Details
| Return Value: | A Boolean, indicating whether "OK" or "Cancel" was clicked in the dialog box:
|
|---|
More Examples
Example
Display a confirmation box, and output what the user clicked:
var txt;
var r = confirm("Press a button!");
if (r == true)
txt = "You pressed OK!";
else
txt = "You pressed Cancel!";
Try it Yourself »
Example
Confirmation box with line-breaks:
confirm("Press a button!nEither OK or Cancel.");Try it Yourself »
Related Pages
Window Object: alert() Method
Window Object: prompt() Method
❮ Window Object