event.pageY
The mouse position relative to the top edge of the document.
.event.pageY()π‘’ 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