Window confirm() Method

The name of the pictureThe name of the pictureThe name of the pictureClash 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:
  • true - the user clicked "OK"

  • false - the user clicked "Cancel" (or the "x" (close) button in the top right corner that is available in all major browsers, except Firefox)


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

Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

ャフサォクコ ケウ,コ,ワ メ,ロスョノ゙,クネ,フムカヤヲニ,エコ゚ツ ウイオン゙ケワサネォキモュキォウイノンコチ゚メヌナイゥフュ,カヒウネェ ネ,ホノケ,ムュキ ッボーミュハ,チ ツス ィ メウイマヤ,゙ウチ ヅ ロ,ォジヌェ ャヌット ェ,マャ,チナエヒネソキツテ トホヲヲミーァ

Node.js puppeteer - Use values from array in a loop to cycle through pages