View Single Post
Old 08-23-2006, 12:33 PM   #3 (permalink)
Salchester
Salchester
 
Salchester's Avatar
 
Join Date: Jul 2005
Location: In a house
Posts: 230
Salchester is an unknown quantity at this point
Co-ordinates Mouseclick

Quote:
Originally Posted by toe_cutter
Forgot the code.
Oh Yeah!!! Sorry

Code:
<html>
<head>
<script language="JavaScript"><!--
if (document.layers) document.captureEvents(Event.MOUSEMOVE);
document.onmousemove=mtrack;

function mtrack(e) {
   var text = 'Coordinates: ';
   if (document.layers) text += e.pageX + ',' + e.pageY
   else text += event.x + ',' + event.y;
   window.defaultStatus = text;
}
//--></script>
</head>
<body>
Move the mouse and see the status change
</body>
</html>
Many Thanks,
__________________
Many Thanks, in advance!

Salchester.
The Future Is Here - Are You Ready?
Salchester is offline   Reply With Quote