Skrevet av Emne: Javascript: Coordinates of mouse event  (Lest 2965 ganger)

ATC

  • Gjest
Javascript: Coordinates of mouse event
« på: 18. Juli 2010, 17:43 pm »
  • [applaud]0
  • [smite]0
  • What is the proper way to find the document coordinates where a mouse event occurred?



    ATC

    • Gjest
    [Solved] Javascript: Coordinates of mouse event
    « Svar #1 på: 18. Juli 2010, 17:43 pm »
  • [applaud]0
  • [smite]0
  • Internet Explorer notwithstanding, use the following code:

    var posx = window.pageXOffset + event.clientX;
    var posy = window.pageYOffset + event.clientY;