Skip to main content
pageY property

Gets the y-coordinate of the mouse pointer, relative to the upper-left corner of the page.

Syntax

JavaScript

p = object.pageY

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
WheelEvent
Reference
clientY
offsetY
screenY
y

 

 

Build date: 11/29/2012