Coordinates of the cursor relative to the screen : Cursor « Development « JavaScript DHTML
- JavaScript DHTML
- Development
- Cursor
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