Show the prompt() dialog in JavaScript

Description

The following code shows how to show the prompt() dialog.

Example


<!--from   w ww  .  j av  a 2s  .  c  o m-->
<!DOCTYPE HTML>
<html>
<body>
<script type="text/javascript">
var result = prompt("What is your name? ", "");
if (result !== null) {
document.writeln("Welcome, " + result);
}


</script>
</body>
</html>

Click to view the demo

The code above generates the following result.

Show the prompt() dialog in JavaScript
Home »
  Javascript Tutorial »
    Browser »
      Browser Dialog
Javascript Tutorial Browser Dialog
Add quotation marks to alert box in JavaScr...
Create a Confirmation dialog in JavaScript
Get value from prompt dialog and display it...
Output the Confirmation dialog returns bool...
Prompt dialog with default value in JavaScr...
Show a confirm dialog in JavaScript
Show a find dialog with window.find() in Ja...
Show an alert dialog in JavaScript
Show the print dialog in JavaScript
Show the prompt() dialog in JavaScript
Use alert Boxes in JavaScript
Use alert dialog box to display the content...
Use confirm method in if statement in JavaS...