TOC PREV NEXT INDEX

domref



window.screen.availTop


Specifies the y-coordinate of the first pixel that is not allocated to permanent or semipermanent user interface features.

Syntax

iAvail = window.screen.availTop
 

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
TOC PREV NEXT INDEX