-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
27 lines (22 loc) · 765 Bytes
/
events.html
File metadata and controls
27 lines (22 loc) · 765 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
<html>
<head>
<title>Title of the document</title>
</head>
<body onscroll="abc()"> <!-- useing only onclick="abc()" -->
<script>
function abc(){
alert('hi');
}
</script>
<button onclick="abc()">Click Now</button>
<p ondblclick="abc()">Click Now Double click</p>
<p oncontextmenu="abc()">Click Now Context Menu</p>
<p onmouseenter="abc()">Click Now Enter</p>
<p onmouseout="abc()">Click Now Mouse Out</p>
<p onmousedown="abc()">Click Now Mouse Down</p>
<p onmouseup="abc()">Click Now Mouse Setup</p>
<input type="text" onkeypress="abc()" placeholder="Please Enter any keys"> <!-- Work only input box or text area -->
<p onkeydown="abc()">Click Now Key down</p>
<p onkeyup="abc()">Click Now Key up</p>
</body >
</html>