Pop-up Boxes


There are three types of pop-up boxes in javascript: confirm, alert, and prompt. To use any of them, type

confirm("Hi!");
prompt("Bye!");
alert("Hello");

Confirm boxes will return "true" if ok is selected, and return "false" if cancel is selected. Alert boxes will not return anything. Prompt boxes will return whatever is in the text box. Note: prompt boxes also have an optional second parameter, which is the text that will already be in the text box.

Exercise

Make a variable test set it equal to a prompt box, and type "Hi!" in it (without the quotes) when it pops up. Note: your pop-up blocker must not be enabled.


Copyright © learn-js.org. Read our Terms of Use and Privacy Policy