The pageX read-only property of the MouseEvent interface returns the X (horizontal) coordinate in pixels of the event relative to the whole document. This property takes into account any horizontal scrolling of the page. 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.
var pos = event.pageX
var pageX = event.pageX;
| Specification | Status | Comment |
|---|---|---|
| CSS Object Model (CSSOM) View Module The definition of 'pageX' in that specification. | Working Draft | Redefined from long to double. |
| Touch Events The definition of 'pageX' in that specification. | Unknown | Initial definition. |
| Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
|---|---|---|---|---|---|---|
| Basic support | 45.0 | (Yes) | (Yes) | 9 | (Yes) | (Yes) |
Redefined from long to double
| 56 | ? | ? | ? | ? | ? |
| Feature | Android Webview | Chrome for Android | Edge | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|---|---|
| Basic support | 45.0 | 45.0 | (Yes) | ? | ? | ? | ? | ? |
Redefined from long to double
| 56 | 56 | ? | ? | ? | ? | ? | ? |
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/pageX