| javascript alert |
|
javascript - alert() is a method of the window object.
alert() method is very similar to the write() method of the window object. The text inside the parentheses is shown in the alert message.
There are three types of popup boxes.
1. Alert Box
2. Confirm Box
3. Prompt Box
Alert Box Syntax:
alert(“Live help desk ”)
Alert Box Example:
<html>
<body>
<script type="text/javascript">
alert ("Live help desk")
</script>
</body>
</html>
Above script alert box displays : Live help desk |
|
| Tag : javascript alert,javascript alert box,javascript alert yes no,javascript alert title |
|
 |
|
|