JavaScript Getting started with JavaScript Using window.prompt()

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Example

An easy way to get an input from a user is by using the prompt() method.

Syntax

prompt(text, [default]);
  • text: The text displayed in the prompt box.
  • default: A default value for the input field (optional).

Examples

var age = prompt("How old are you?");
console.log(age); // Prints the value inserted by the user

Prompt box

If the user clicks the OK button, the input value is returned. Otherwise, the method returns null.

The return value of prompt is always a string, unless the user clicks Cancel, in which that case it returns null. Safari is an exception in that when the user clicks Cancel, the function returns an empty string. From there, you can convert the return value to another type, such as an integer.

Notes

  • While the prompt box is displayed, the user is prevented from accessing other parts of the page, since dialog boxes are modal windows.
  • Starting with Chrome 46.0 this method is blocked inside an <iframe> unless its sandbox attribute has the value allow-modal.


Got any JavaScript Question?