🚨 Time is Running Out: Reserve Your Spot in the Lucky Draw & Claim Rewards! START NOW

Code has been added to clipboard!

Track Mouse Position with pageY and pageX Properties

Reading time 1 min
Published Jul 3, 2019
Updated Sep 30, 2019

pageY and pageX: Main Tips

  • The event.pageY property returns the cursor position in relation to document's top edge (in pixels).
  • To find out the position in relation to the document's left edge, use event.pageX property.
DataCamp
Pros
  • Easy to use with a learn-by-doing approach
  • Offers quality content
  • Gamified in-browser coding experience
  • The price matches the quality
  • Suitable for learners ranging from beginner to advanced
Main Features
  • Free certificates of completion
  • Focused on data science skills
  • Flexible learning timetable
Udacity
Pros
  • Simplistic design (no unnecessary information)
  • High-quality courses (even the free ones)
  • Variety of features
Main Features
  • Nanodegree programs
  • Suitable for enterprises
  • Paid Certificates of completion
Udemy
Pros
  • Easy to navigate
  • No technical issues
  • Seems to care about its users
Main Features
  • Huge variety of courses
  • 30-day refund policy
  • Free certificates of completion

pageY

The event.pageY property returns the cursor position relative to the top edge. In the example below, you can see how the page Y tracks your mouse movements:

pageX

Now, by using the event.pageX property you can get the cursor position relative to the left edge. Open the example below and move your mouse to see how the cursor position is indicated in pixels:

Note: both pageX and pageY only track the movement inside the document frame.