event.pageYThe event.pageY property in jQuery refers to coordinate of mouse relative to the top edge of the document.
event.pageY property ExampleShow the mouse coordinates which are relative to the document, which in this case is the iframe.
$(document).bind('mousemove',function(e){
$("#log").text("e.pageX: " + e.pageX + ", e.pageY: " + e.pageY);
});
