-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path64.html
More file actions
45 lines (34 loc) · 643 Bytes
/
Copy path64.html
File metadata and controls
45 lines (34 loc) · 643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<html>
<head>
<script>
// windows object
function dis()
{
alert("This is alert dioalog")
}
function dis1()
{
var msg = confirm("Are you sure");
if(msg == true)
alert("True");
else
alert("Falss");
}
function dis2()
{
var v = prompt("Where are you");
alert("Welcome :" +v);
}
function dis3()
{
open("http://www.gmail.com");
}
</script>
</head>
<body>
<button onclick="dis();"> Alert </button>
<button onclick="dis1();"> Confirm </button>
<button onclick="dis2();"> promt </button>
<button onclick="dis3();"> open </button>
</body>
</html>