Edit This Code:
<!DOCTYPE html>
<html>
<head>
<style>
div {
    width: 200px;
    height: 100px;
    border: 1px solid black;
}

</style>
</head>
<body>

<p>This example demonstrates how to assign an "onmousemove" event to a div element.</p>

<div onmousemove="myFunction(event)"></div>

<p>Mouse over the rectangle above, and get the coordinates of your mouse pointer.</p>

<p id="demo"></p>

<script>
function myFunction(e) {
    var x = e.clientX;
    var y = e.clientY;
    var coor = "Coordinates: (" + x + "," + y + ")";
    document.getElementById("demo").innerHTML = coor;
}
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com