Mega Code Archive

 
Categories / JavaScript Tutorial / Event
 

Display current mouse position in status bar (IE)

< html> <head> <title>A Simple Page</title> <script language="JavaScript"> <!-- function clicked() {     window.status = "You clicked at the coordinates: X = " + event.x + " Y = " + event.y } //  --> </script> </head> <body onmousedown="clicked()"> </body> </html>