NOTICE

  1. <html>
  2.     <head>
  3.         <title></title>
  4.         <script>
  5.         document.onmousedown = function(nsEvent) {
  6.             var theEvent = nsEvent ? nsEvent : window.event;
  7.             alert("X : " + theEvent.screenX + ", Y : " + theEvent.screenY);
  8.         }
  9.         </script>
  10.     </head>
  11.     <body>
  12.     </body>
  13. </html>
ie, ff 다 된다.