-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
39 lines (23 loc) · 1.02 KB
/
Copy pathevents.html
File metadata and controls
39 lines (23 loc) · 1.02 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<script src= "events.js">
</script>
<title>Events</title>
</head>
<body>
<button onclick = "hello()"> Click Event</button><br><br>
<button ondblclick = "hello()"> Double Click Event</button><br><br>
<button oncontextmenu = "hello()"> Right Click Event</button><br><br>
<button onmouseenter = "hello()"> Mouse Hover Event</button><br><br>
<button onmouseout = "hello()"> Mouse Out Event</button><br><br>
<button onmousedown = hello()"> Mouse Down Event</button><br><br>
<button onmouseup = "hello()"> Mouse Up Event</button><br><br>
<button onkeypress = "hello()"> Key Press Event</button><br><br>
<button onload = "hello()"> Load Event</button><br><br>
<button onunload = "hello()"> Unload Click Event</button><br><br>
<button onresize = "hello()"> Resize Event</button><br><br>
<button onscroll = "hello()"> Scroll Event</button><br><br>
</body>
</html>