TOC PREV NEXT INDEX

domref



window.outerHeight


Gets/sets the height of the outside of the browser window.

Syntax

window.outerHeight = iPx
 
iPx = window.outerHeight
 

Parameters

iPx is an integer representing the number of pixels.

Example

window.outerHeight = ( window.screen.availHeight );
 

Notes

As the snippet above demonstrates, the outerHeight property is very often used to size the browser to the available screen area. Contrast this with the innerHeight property, which controls the size of the content area of the browser.

See also window.screen, window.innerHeight, window.outerWidth

Specification

DOM Level 0. Not part of specification.
 


Netscape Communications
http://developer.netscape.com
TOC PREV NEXT INDEX