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: Position of the mouse pointer

jQuery Events : Exercise-9 with Solution

Find the position of the mouse pointer relative to the left and top edges of the document.

Solution :

HTML Code :

<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
  <meta charset="utf-8">
  <title>Find the position of the mouse pointer relative to the left and top edges of the document</title>
</head>
<body>
<div id="doc"></div>
</body>
</html>

JavaScript Code :

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

Live Demo:

See the Pen jquery-events-exercise-9 by w3resource (@w3resource) on CodePen.


Contribute your code and comments through Disqus.

Previous: Change the background color of the <div> element of the following code on clicking the button.
Next: Stop people from writing in first text input box (user ID).

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.