-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpagexy.html
More file actions
45 lines (40 loc) · 1 KB
/
pagexy.html
File metadata and controls
45 lines (40 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>pageX & pageY Property</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 pageX & pageY Property</h1>
<div id="result"></div>
<!-- jquery starts form here -->
<script>
$(document).ready(function () {
$(document).mousemove(function(e){
$('#result').text("X: " + e.pageX + "Y: " + e.pageY ) ;
})
});
</script>
<!-- jquery end here -->
</body>
</html>