Event JavaScript Tutorial

< html>

X/Y Marks the Spot

function mouseDown(nsEvent) {
  var theEvent = nsEvent ? nsEvent : window.event;
  var locString = "X = " + theEvent.screenX + " Y = " + theEvent.screenY;
  alert(locString);
}
document.onmousedown=mouseDown;