Coordinates of the cursor relative to the screen : Cursor « Development « JavaScript DHTML






Coordinates of the cursor relative to the screen

<html>
<head>

<script type="text/javascript">
function coordinates(event){
    alert("X=" + event.screenX + " Y=" + event.screenY)
}

</script>
</head>
<body onmousedown="coordinates(event)">

<p>Click in the document. </p>

</body>
</html>



           
       








Related examples in the same category

1.Hand, help and wait cursor
2.Coordinates of the cursor