HTML | Window outerWidth Property
The window outerWidth property is used for returning the outer width 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 width of the browser’s window in pixels.
Syntax:
window.outerWidth
Below program illustrates the Window outerWidth Property :
Getting the browser window’s width.
<!DOCTYPE html> < html > < head > < title > Window outerWidth Property in HTML </ title > < style > h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </ style > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >Window outerWidth Property</ h2 > < p > For returning the browser window's width, double click the "Check Width" button: </ p > < button ondblclick = "pixel()" > Check Width </ button > < p id = "outerwidth" ></ p > < script > function pixel() { var width = window.outerWidth; document.getElementById("outerwidth").innerHTML = "Width : " + width; } </ script > </ body > </ html > |
Output:
After clicking the button
Supported Browsers: The browser supported by Window outerWidth Property
are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
Recommended Posts:
- HTML | Window top( ) Property
- HTML | Window self( ) Property
- HTML | Window name Property
- HTML | Window innerHeight Property
- HTML | DOM Window closed Property
- HTML | DOM Window parent Property
- HTML | Window pageXOffset Property
- HTML | Window pageYOffset Property
- HTML | DOM Window status Property
- HTML | Window screenLeft Property
- HTML | Window screenTop Property
- HTML | Window outerHeight Property
- HTML | Window innerWidth Property
- HTML | Window length Property
- HTML | Window sessionStorage( ) Property
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.