HS Banner
Back
JavaScript Alart

Author: Guitarman 03/21/2021
Language: JavaScript
Views: 244
Tags:


Description:

The alert() method displays an alert box with a specified message.

Article:

Definition and Usage

The alert() method displays an alert box with a specified message and an OK button.

An alert box is often used if you want to make sure information comes through to the user.

Note: The alert box takes the focus away from the current window, and forces the browser to read the message. Do not overuse this method, as it prevents the user from accessing other parts of the page until the box is closed.

<script>
	alert("Hello! I am an alert box!");
</script>

Window alert() Method (w3schools.com)

Full Source Code:
<!DOCTYPE html>
<html>
<body>

<p>Click the button to display an alert box.</p>

<button onclick="myFunction()">Try it</button>

<script>
function myFunction() {
  alert("Hello! I am an alert box!");
}
</script>

</body>
</html>


Back
Comments
Add Comment
There are no comments yet.