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.

Pros Main Features
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid certificates of completion

Pros Main Features
- Easy to navigate
- No technical issues
- Seems to care about its users
- Huge variety of courses
- 30-day refund policy
- Free certificates of completion

Pros Main Features
- Great user experience
- Offers quality content
- Very transparent with their pricing
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
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.