Science, asked by saanvsinghal, 1 month ago

Display a dialog box asking the user to enter a name and set the default value as abc

Answers

Answered by criskristabel
1

Definition and Usage

The prompt() method displays a dialog box that prompts the visitor for input.

A prompt box is often used if you want the user to input a value before entering a page.

Note: When a prompt box pops up, the user will have to click either "OK" or "Cancel" to proceed after entering an input value. Do not overuse this method, as it prevents the user from accessing other parts of the page until the box is closed.

The prompt() method returns the input value if the user clicks "OK". If the user clicks "cancel" the method returns null.

Similar questions