How to use window.prompt()

Inspired by this tweet by David Walsh:

to which I replied “prompt()” as a joke, I got this idea of making a post about this super old API called prompt() exposed by the browser’s window object.

prompt() lets us get input from the user.

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 especially while prototyping an app, so you can just call a prompt() and be done with it, without setting up a form.

Here’s how it works: you call prompt()

You pass a string that represents the question we ask to the user:

prompt("How old are you?")

This is how it looks in Chrome:

This is in Safari:

This is in Firefox:

As you can see, it’s different but the concept is the same

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

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

The value entered is then returned from this function, so we can assign it to a variable:

const age = prompt("How old are you?")

You can pass a second parameter that’s the default value prefilled in the prompt:

const age = prompt("How old are you?", 18)

If the user enters nothing and clicks OK, an empty string will be returned.

If the user clicks the Cancel button, the prompt() function call returns null


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

Inspired by this tweet by David Walsh:

to which I replied “prompt()” as a joke, I got this idea of making a post about this super old API called prompt() exposed by the browser’s window object.

prompt() lets us get input from the user.

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 especially while prototyping an app, so you can just call a prompt() and be done with it, without setting up a form.

Here’s how it works: you call prompt()

You pass a string that represents the question we ask to the user:

prompt("How old are you?")

This is how it looks in Chrome:

This is in Safari:

This is in Firefox:

As you can see, it’s different but the concept is the same

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

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

The value entered is then returned from this function, so we can assign it to a variable:

const age = prompt("How old are you?")

You can pass a second parameter that’s the default value prefilled in the prompt:

const age = prompt("How old are you?", 18)

If the user enters nothing and clicks OK, an empty string will be returned.

If the user clicks the Cancel button, the prompt() function call returns null


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-07T05:00:00+00:00) How to use window.prompt(). Retrieved from https://www.scien.cx/2021/04/07/how-to-use-window-prompt/

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

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.