Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<style>
div {
  width: 200px;
  height: 100px;
  border: 1px solid black;
}
</style>
</head>
<body>
<p>This example uses the HTML DOM to assign an "onmousemove" event to a div element.</p>
<div id="myDIV"></div>
<p>Mouse over the rectangle above, and get the coordinates of your mouse pointer.</p>
<p id="demo"></p>
<script>
document.getElementById("myDIV").onmousemove = function(event) {myFunction(event)};
function myFunction(e) {
  var x = e.clientX;
  var y = e.clientY;
  var coor = "Coordinates: (" + x + "," + y + ")";
  document.getElementById("demo").innerHTML = coor;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_onmousemove_dom by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:39:59 GMT -->
</html>