About 81,900 results
Open links in new tab
  1. Window prompt () Method - W3Schools

    The prompt() method displays a dialog box that prompts the user for input. The prompt() method returns the input value if the user clicks "OK", otherwise it returns null.

  2. Window: prompt () method - Web APIs | MDN - MDN Web Docs

    Aug 19, 2025 · window.prompt() instructs the browser to display a dialog with an optional message prompting the user to input some text, and to wait until the user either submits the …

  3. Javascript Window prompt() Method - GeeksforGeeks

    Aug 5, 2025 · The window.prompt () method in JavaScript is a built-in function that displays a dialog box prompting the user to input some text. This method is particularly useful for …

  4. Learn JavaScript prompt By Practical Examples

    In this tutorial, you will learn how to use the JavaScript prompt () method to display a dialog with a message prompting for user input.

  5. JavaScript window.prompt Guide: Learn How to Get User Input

    Apr 2, 2025 · Learn how to use JavaScript's window.prompt method effectively with examples and detailed explanations. Enhance your web development skills with this step-by-step tutorial.

  6. JavaScript | window | prompt () | Codecademy

    Jun 2, 2023 · The prompt() function is a built-in JavaScript method that displays a modal dialogue box prompting the user for input. It is part of the Web API, provided by the browser’s window …

  7. JavaScript Window prompt () Method: Displaying Prompt Box

    Feb 7, 2025 · A comprehensive guide to the JavaScript window.prompt () method, covering syntax, usage, and examples for displaying prompt boxes and handling user input.

  8. JavaScript Prompt Dialog Box Tutorial - CodeForGeek

    Aug 20, 2025 · The prompt () method in JavaScript, also known as a window prompt, is used to display a dialog box that asks users to provide input. This method lets the user enter an input …

  9. JavaScript Window prompt () Method | CodeToFun

    Nov 21, 2024 · The prompt() method is a handy feature that allows you to obtain user input through a simple dialog box. In this guide, we'll explore the prompt() method, understand its …

  10. JavaScript Prompt - Quackit Tutorials

    The 'prompt' box is created using JavaScript's built-in prompt() function. When the JavaScript prompt () function is triggered, a small box will pop up and display a message to the user …