Search w3schools.com:

SHARE THIS PAGE

Window innerWidth and innerHeight Properties

Window Object Reference Window Object

Definition and Usage

The innerWidth property sets or returns the inner width of a window's content area.

The innerHeight property sets or returns the inner height of a window's content area.

Note: Use the outerWidth and outerHeight properties to get width/height with toolbars/scrollbars.


Syntax

Get:

window.innerWidth
window.innerHeight

Set:

window.innerWidth=pixels
window.innerHeight=pixels


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The innerWidth and innerHeight properties are supported in all major browsers.

Note: These properties are not supported in IE8 and earlier.


Example

Example

Get the window's height and width: (NOT including toolbars/scrollbars):

var w=window.innerWidth;
var h=window.innerHeight;

Try it yourself »


Window Object Reference Window Object

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]