Javascript Course


Alert, Prompt, Confirm are predefined dialog windows, they belong directly to the JavaScript object 'window'.

Alert

alert() displays a very basic notice box with a message inside it.
- Syntax:
window.alert('alert_text');
- The string of text will be displayed in the alert pop-up box. When an alert box pops up, the user will have to click 'OK' to proceed.
- For example, the next script opens an Alert window with the message 'Welcome'.
<script>
window.alert('Welcome');
</script>
- The user will be presented with a small box containing only the message and a button marked OK, like next image.
Alert window

JS Confirm

The confirm() method displays a confirmation dialog box to the viewer, who must then click OK or Cancel to proceed.
A confirm box is often used if you want the user to verify or accept something.

Syntax:
window.confirm('Question')
- The confirm box displays the text 'Question' and two buttons 'OK' and 'Cancel'.
- If the user clicks 'OK', the box returns True. If the user clicks 'Cancel', the box returns False.
Aceasta fereastra este folosita pentru a fi executata o comanda cand este apasat butonul 'OK' (returneaza TRUE) si alta comanda cand este apasat butonul 'Cancel' (returneaza FALSE)
The next example opens a confirm window with the question 'The result of 0+0 is 0?'. If it's clicked 'OK' it shows an Alert window with the message 'Corect', but if it's clicked 'Cancel' it opens an Alert window with the message 'Incorrect'.
<script>
var ques = window.confirm('The result of 0+0 is 0?');
if (ques) alert('Corect');
else alert('Incorrect');
</script>
The confirm box will look like:
Confirm box

Prompt

A Prompt box is used if you want the user to input information. Using this window, you can do things based on what the viewer enters into the text box at the prompt.
Syntax:
window.prompt('Message', DefaultValue)
- The 'Message' is the text that will be shown above the text box. The 'DefaultValue' argument will be the starting text inside the text box. If you don't want any text in the text box, leave this as an empty string.
- The dialogue will return a string containing the text typed by the user or 'null' if the user didn't type anything:
The next example opens a Prompt dialog box.
<script>
var msg = window.prompt('Write your name', 'Name');
alert('Hello '+ msg);
</script>
The prompt window will look like:
Prompt window
- If the user clicks 'OK' will display an Alert window with the name typed in the text box, if it's clicked 'Cancel', the Alert will display 'null'.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag is used in <table> to create table header cell?
<thead> <th> <td>
<table><tr>
  <th>Title 1</th>
  <th>Title 2</th>
</tr></table>
Which CSS property sets the distance between lines?
line-height word-spacing margin
.some_class {
  line-height: 150%;
}
Which function opens a new browser window.
alert() confirm() open()
document.getElementById("id_button").onclick = function(){
  window.open("http://coursesweb.net/");
}
Indicate the PHP function that returns an array with names of the files and folders inside a directory.
mkdir() scandir() readdir()
$ar_dir = scandir("dir_name");
var_export($ar_dir);
Alert, Confirm and Prompt

Last accessed pages

  1. The Fifth Agreement (19036)
  2. Rectangle, Oval, Polygon - Star (3305)
  3. CSS3 - text-shadow, word-wrap, text-overflow (1315)
  4. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (141002)
  5. SHA1 Encrypt data in JavaScript (35526)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (577)
  2. Read Excel file data in PHP - PhpExcelReader (75)
  3. The Mastery of Love (68)
  4. CSS cursor property - Custom Cursors (58)
  5. The School for Gods (56)