javascript event clientX, clientY
| clientX, clientY | NN 6 IE 4 DOM 2 |
| Read-only | |
|
Indicate the horizontal (x) and vertical (y) coordinate of the mouse at the moment the current event fired. These coordinates are relative to the viewable document area of the browser window or frame. To convert these coordinates to the document's in IE, be sure to add the body element's scroll values (or html element's scroll values in IE 6 standards-compatible mode). For Netscape 6, the pageX and pageY properties provide coordinates in the document's space. |
|
| Example | |
if ((evt.clientX >= 10 && evt.clientX <= 20) &&
(evt.clientY >= 50 && evt.clientY <= 100)) {
// process code for click in hot zone bounded by 10,50 and 20,100
}
|
|
| Value | |
|
Integer of pixel values. |
|
| Default | |
|
None. |
|
Previous: javascript event contentOverflow
- #12010-04-05[Quote]thanks
751,Nickname,Homepage or email,Comments here,Add comment
