How to use window.confirm()

confirm() lets us ask confirmation before performing something.

This API dates back to the dawn of the Web, and is supported by every browser.

It’s very simple and I think it might come handy in many different cases without reaching for a custom-built UI.

Here’s how it works: you call confirm(), passing a string that represents the thing we want to confirm, which is shown to the user:

confirm("Are you sure you want to delete this element?")

This is how it looks in Chrome:

This is in Safari:

This is in Firefox:

As you can see it’s rendered slightly differently in each browser, but the concept is the same.

You should call window.confirm(), but since window is implicit, confirm() works

The browser blocks the script execution until the user clicks any of the OK or Cancel button. You can’t escape from that without clicking a button.

The call to confirm() returns a boolean value that’s either true, if the user clicks OK, or false if the user clicks Cancel, so we can assign it to a variable, or also use it in a conditional:

const confirmed = confirm("Are you sure you want to delete this element?")
if (confirm("Are you sure you want to delete this element?")) {
  console.log('confirmed')
}


This content originally appeared on flaviocopes.com and was authored by flaviocopes.com

confirm() lets us ask confirmation before performing something.

This API dates back to the dawn of the Web, and is supported by every browser.

It’s very simple and I think it might come handy in many different cases without reaching for a custom-built UI.

Here’s how it works: you call confirm(), passing a string that represents the thing we want to confirm, which is shown to the user:

confirm("Are you sure you want to delete this element?")

This is how it looks in Chrome:

This is in Safari:

This is in Firefox:

As you can see it’s rendered slightly differently in each browser, but the concept is the same.

You should call window.confirm(), but since window is implicit, confirm() works

The browser blocks the script execution until the user clicks any of the OK or Cancel button. You can’t escape from that without clicking a button.

The call to confirm() returns a boolean value that’s either true, if the user clicks OK, or false if the user clicks Cancel, so we can assign it to a variable, or also use it in a conditional:

const confirmed = confirm("Are you sure you want to delete this element?")
if (confirm("Are you sure you want to delete this element?")) {
  console.log('confirmed')
}


This content originally appeared on flaviocopes.com and was authored by flaviocopes.com


Print Share Comment Cite Upload Translate Updates
APA

flaviocopes.com | Sciencx (2021-04-08T05:00:00+00:00) How to use window.confirm(). Retrieved from https://www.scien.cx/2021/04/08/how-to-use-window-confirm/

MLA
" » How to use window.confirm()." flaviocopes.com | Sciencx - Thursday April 8, 2021, https://www.scien.cx/2021/04/08/how-to-use-window-confirm/
HARVARD
flaviocopes.com | Sciencx Thursday April 8, 2021 » How to use window.confirm()., viewed ,<https://www.scien.cx/2021/04/08/how-to-use-window-confirm/>
VANCOUVER
flaviocopes.com | Sciencx - » How to use window.confirm(). [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/04/08/how-to-use-window-confirm/
CHICAGO
" » How to use window.confirm()." flaviocopes.com | Sciencx - Accessed . https://www.scien.cx/2021/04/08/how-to-use-window-confirm/
IEEE
" » How to use window.confirm()." flaviocopes.com | Sciencx [Online]. Available: https://www.scien.cx/2021/04/08/how-to-use-window-confirm/. [Accessed: ]
rf:citation
» How to use window.confirm() | flaviocopes.com | Sciencx | https://www.scien.cx/2021/04/08/how-to-use-window-confirm/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.