JavaScript | Coordinates of mouse
The top left corner of the screen is (0, 0) i,e, X and Y coordinate is (0, 0). This means that vertical zero is topmost point and horizontal zero is the leftmost point.
So, the task is to find the coordinates of the mouse over the screen.
It can be find using the clientX and clientY property:
- ClientX: It gives the horizontal coordinate of the event.
- ClientY: It gives the vertical coordinate of the mouse.
Syntax:
For X coordinate: event.ClientX For Y coordinate: event.ClientY
Below is the required implementation:
javascript
<html> <head> <script> // coordinate function that calculate the X // coordinate and Y coordinates function coordinate(event) { // clientX gives horizontal coordinate var x = event.clientX; // clientY gives vertical coordinates var y = event.clientY; document.getElementById( "X" ).value = x; document.getElementById( "Y" ).value = y; } </script> </head> <!-- onmousemove event is called when the mouse pointer is moving over the screen --> <!-- calling of coordinate function --> <body onmousemove= "coordinate(event)" > <!-- X coordinate is stored in X-coordinate variable --> X-coordinate <input type= "text" id= "X" > <br> <br> <!-- Y coordinate is stored in Y-coordinate variable --> Y-coordinate <input type= "text" id= "Y" > </body> </html> |
Output: