pageY property
Gets the y-coordinate of the mouse pointer, relative to the upper-left corner of the page.
![]() |
Syntax
| JavaScript | |
|---|
Property values
Type: Integer
The y-coordinate.
Standards information
Remarks
The pageY property is equivalent to the clientY value plus the scrollTop value of the document, as the following code example shows.
var pageY = event.clientY + document.documentElement.scrollTop;
See also
- DragEvent
- MouseEvent
- MouseWheelEvent
- WheelEvent
- Reference
- clientX
- offsetX
- screenX
- x
- clientY
- offsetY
- screenY
- y
Show:
