Javascript - Find xy coordinate of the mouse pointer, Javascript to display the x and y value
Find xy coordinate of the mouse pointer
Javascript to display the x and y value - the coordinate of the mouse pointer.
<!--script type="text/javascript" src="jquery.js"> </script--> <script> $().mousemove(function(e){ //display the x and y axis values inside the P element $('p').html("X Axis : " + e.pageX + " | Y Axis " + e.pageY); }); </script> <p>Find X and Y coordinate of the mouse pointer</p>
The topic on Javascript - Find xy coordinate of the mouse pointer is posted by - Math
Hope you have enjoyed, Javascript - Find xy coordinate of the mouse pointerThanks for your time