TOC PREV NEXT INDEX

Put your logo here!


window.screen.availHeight


Returns the amount of vertical space available to the window on the screen.

Syntax

iAvail = window.screen.availHeight 

Parameters

iAvail is an integer number representing the amount of space in pixels.

Example

if window.screen.availHeight != window.screen.height { 
    // something's in the way! 
    // use available to size window 
} 

Notes

Addtional notes.

Specification

DOM Level 0. Not part of specification. 


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