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.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/jquery-exercises/2/jquery-fundamental-exercise-91.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics