window.innerHeight

JavaScript1.2+ Nav4+ Syntax

							window.innerHeight

Description

The innerHeight property of the Window object references the pixel height of the document within the browser's frame. This does not include any of the toolbars or other "chrome" that makes up the frame itself.

Example

Listing 7.546 has a button that, when clicked, opens up a second, smaller window. The innerHeight property is written to this new window.

Listing 7.546 Using the innerHeight Property
 <html> <head> <script language="JavaScript1.2"> <!-- Hide // Define a function to open a small window function openWin(){ // Create variables to hold the various options that can be set // when a new Window instance is created. var myBars = 'directories=no,location=no,menubar=no,status=no'; ...

Get Pure JavaScript now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.