The Window.resizeTo()
method dynamically resizes the window.
Syntax
window.resizeTo(aWidth, aHeight)
Parameters
aWidth
is an integer representing the newouterWidth
in pixels (including scroll bars, title bars, etc).aHeight
is an integer value representing the newouterHeight
in pixels (including scroll bars, title bars, etc).
Example
This function resizes the window so that it takes up one quarter of the available screen. See the Screen.availWidth
and Screen.availHeight
properties.
function quarter() { window.resizeTo( window.screen.availWidth / 2, window.screen.availHeight / 2 ); }
Specification
Specification | Status | Comment |
---|---|---|
CSS Object Model (CSSOM) View Module The definition of 'window.resizeTo()' in that specification. |
Working Draft |
Browser compatibility
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
resizeTo | Chrome Full support Yes | Edge Full support 12 | Firefox
Full support
Yes
| IE ? | Opera Full support Yes | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Firefox Android Full support Yes | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android Full support Yes |
Legend
- Full support
- Full support
- Compatibility unknown
- Compatibility unknown
- See implementation notes.
- See implementation notes.