event.pageX
The mouse position relative to the left edge of the document.
.event.pageX()π‘’ Number
Show the mouse position relative to the left and top edges of the document (within this iframe).
JS
<div id="log"></div>
CSS
body {
background-color: #eef;
}
div {
padding: 20px;
}
HTML
$(document).on("mousemove", function (event) {
$("#log").text("pageX: " + event.pageX + ", pageY: " + event.pageY);
});
DEMO