-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathevent.html
More file actions
61 lines (38 loc) · 1.54 KB
/
event.html
File metadata and controls
61 lines (38 loc) · 1.54 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!-- <h1 onmouseover="handlMouse()">Hello</h1>
<br><br>
<h1 onmouseout="handlMouseout()">World </h1>
<br><br>
<input type="text" name="text" id="text" onkeydown="handlKyedown()" placeholder="Key Down">
<br><br>
<input type="text" name="text" id="text1" onkeypress="handlKyepress()" placeholder="Key Press">
<br><br>
<input type="text" name="text" id="text2" onkeyup="handlKyeup()" placeholder="Key UP">
<br><br>
<h2>onblur event</h2> Email:
<input type="email" id="email" onblur="handlBlur()">
<br><br>
<div id="scroll-box" style="overflow: scroll; height: 100px; width: 100px; float: left;">
<p style="height: 200px; width: 200px;">Scroll me!</p>
</div>
<p style="text-align: center;" id="output">Waiting on scroll events...</p>
-->
<button onclick="handlClick()">Click Hear</button>
<h1 onmouseover="handlMouseOver()">Hello MISTRY</h1>
<h1 onmouseout="handlMouseOut()">HELLO Meet</h1>
<h1 onmousedown="handlMouseDown()">Hello World</h1>
<h1 onmouseup="handleMouseUp()">Satrun</h1>
<br>
<input type="text" name="name" id="name" placeholder="name" onkeydown="handlKeyDown()">
<input type="text" name="name" id="name1" placeholder="name" onkeyup="handlKeyUp()" onfocus="handlFocus()"
onblur="handlBlur()">
<script src="js/event.js"></script>
</body>
</html>