window.screen.availLeft
Returns the first available pixel available from the left side of the screen.
Syntax
iAvail = window.screen.availLeft
Parameters
iAvail is an integer representing the amount of space in pixels.
Example
setY = window.screen.height - window.screen.availTop; setX = window.screen.width - window.screen.availLeft; window.moveTo(setX, setY);
Notes
In most cases, this property returns 0.
Specification
DOM Level 0. Not part of specification.
Netscape Communications http://developer.netscape.com |