clientY Property

MS Office DHTML, HTML & CSS

clientY Property


Retrieves the y-coordinate of the mouse pointer's position relative to the client area of the window, excluding window decorations and scroll bars.

Syntax

HTMLN/A
Scripting[ iYPos = ] event.clientY

Possible Values

iYPosInteger that specifies the y-coordinate, in pixels.

The property is read-only with no default value.

Remarks

Since the clientY property returns a value relative to the client, you can add the value of the scrollTop property to determine the distance from the edge of the BODY element.

Example

This example uses the clientY property to determine the mouse position relative to the window. The status window shows the mouse position at all times.

Sample Code

<SCRIPT>
function clientCoords()
{
    var offsetInfo = ""
    clientInfo = "The x coordinate is: " + window.event.clientX + "\r"
    clientInfo += "The y coordinate is: " + window.event.clientY + "\r"
    alert(clientInfo);
}
</SCRIPT>
</HEAD>
<BODY onmousemove="window.status = 'X=' + this.clientX + ' Y=' + 
        this.clientY"
    ondblclick="clientCoords()">

This feature requires Internet Explorer 4.0 or later. Click the icon below to install the latest version. Then reload this page to view the sample.
Microsoft Internet Explorer

Applies To

[ Object Name ]
PlatformVersion
Win16:
Win32:
Mac:
Unix:
WinCE:
Version data is listed when the mouse hovers over a link, or the link has focus.
event

Back to topBack to top

Did you find this topic useful? Suggestions for other topics? write us!Internet Link

© 1999 microsoft corporation. all rights reserved. terms of useInternet Link.