This topic has not yet been rated - Rate this topic

pageY property

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

Internet Explorer 9

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

 

 

Send comments about this topic to Microsoft

Build date: 11/29/2012

Community Additions

ADD
© 2013 Microsoft. All rights reserved.