-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheventswhich.html
More file actions
55 lines (47 loc) · 1.25 KB
/
eventswhich.html
File metadata and controls
55 lines (47 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Event Which</title>
<script
src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
crossorigin="anonymous"
></script>
<!-- style starts form here -->
<style>
#result {
border: 1px solid black;
width: 100%;
height: 500px;
background: palevioletred;
display: flex;
justify-content: center;
align-items: center;
font-size: 40px;
}
</style>
<!-- style end here -->
</head>
<body>
<h1>jQuery event.which</h1>
<div id="result"></div>
<br />
<input type="text" id="inputbox" />
<br />
<h2></h2>
<!-- jquery starts form here -->
<script>
$(document).ready(function () {
$("#result").on("mouseover mouseout mousedown", function (e) {
$("h2").html(e.type + ":" + e.which);
});
$("#inputbox").on("keydown", function (e) {
$("h2").html(e.type + ":" + e.key.charCodeAt(0));
});
});
</script>
<!-- jquery end here -->
</body>
</html>