HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery pageY Property</h1> <div style="height: 100px; border:1px solid red;"> Move your cursor over me. </div> <p>pageY is <strong>0</strong></p> <script> $(document).ready(function(){ $("div").mousemove(function(e){ $("strong").text(e.pageY); }); }); </script> </body> </html>
OUTPUT
×

Save as Private