Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

jQuery: Display the mouse position relative to the left and top edges of the document

jQuery Fundamental - I : Exercise-91

Display the mouse position relative to the left and top edges of the document (within this iframe).

Sample solution :

HTML Code :

<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-git.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Display the mouse position relative to the left and top edges of the document (within this iframe).</title>
</head>
<body>
<div id="position"></div>
</body>
</html>

CSS Code :

 body {
 background-color: #CCDD96;
 }
 div {
 padding: 20px;
 }

JavaScript Code :

$( document ).on( "mousemove", function( event ) {
$( "#position" ).text( "pageX: " + event.pageX + ", pageY: " + event.pageY );
});

See the Pen jquery-fundamental-exercise-91 by w3resource (@w3resource) on CodePen.


Contribute your code and comments through Disqus.

Previous: Check whether the event namespace is used.
Next: Cancel the default action (navigation) of the click.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.