HTML DOM Window outerHeight Property (original) (raw)
Last Updated : 15 Jun, 2023
The window outerHeight property is used for returning the outer height of the browser window. It includes all the interface elements such as toolbars, scrollbars, etc. It is a read-only property and returns a number which represents the height of the browser's window in pixels.
Syntax:
window.outerHeight
Below program illustrates the Window outerHeight Property :
Getting the browser window's height.
html `
Window outerHeight Property in HTML