TOC PREV NEXT INDEX

Put your logo here!


window.screen.availTop


Returns the first available pixel from the top of the screen available to the browser.

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. 


mozilla.org | mailto:oeschger | bug 93108
TOC PREV NEXT INDEX