|
|
|
|
|
window.screen.availTop
Returns the first available pixel from the top of the screen available to the browser.
Syntax
iAvail = window.screen.availTopParameters
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.
| mozilla.org | mailto:oeschger | bug 93108 |
|
|
|
|
|