MouseEvent.pageY

The pageY read-only property of the MouseEvent interface returns the Y (vertical) coordinate in pixels of the event relative to the whole document. This property takes into account any vertical scrolling of the page.

Syntax

var pos = event.pageY;

Originally, this property was defined as a long integer. The CSSOM View Module redefined it as a double float. See the Browser compatibility section for details.

Examples

var pageY = event.pageY;

Specifications

Specification Status Comment
CSS Object Model (CSSOM) View Module
The definition of 'pageY' in that specification.
Working Draft Redefined from long to double.
Touch Events
The definition of 'pageY' in that specification.
Unknown Initial definition.

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
pageY
Experimental
Chrome Full support 45Edge Full support 12Firefox Full support YesIE Full support 9Opera Full support YesSafari Full support YesWebView Android Full support 45Chrome Android Full support 45Firefox Android Full support YesOpera Android Full support YesSafari iOS Full support YesSamsung Internet Android Full support 5.0
Value type changed from long to doubleChrome Full support 56Edge Full support ≤79Firefox No support NoIE ? Opera ? Safari ? WebView Android Full support 56Chrome Android Full support 56Firefox Android No support NoOpera Android ? Safari iOS ? Samsung Internet Android Full support 6.0

Legend

Full support
Full support
No support
No support
Compatibility unknown
Compatibility unknown
Experimental. Expect behavior to change in the future.
Experimental. Expect behavior to change in the future.

See also