Baseline Widely available
The Window.resizeTo()
method dynamically resizes the window.
width
An integer representing the new outerWidth
in pixels (including scroll bars, title bars, etc.).
height
An integer value representing the new outerHeight
in pixels (including scroll bars, title bars, etc.).
None (undefined
).
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);
}
Specifications Browser compatibility
Note: It's not possible to resize a window or tab that wasn't created by window.open()
. It's also not possible to resize when the window has multiple tabs.
Note: This function might not resize the window synchronously. In some environments (like mobile) it might not resize the window at all. You can listen to the resize
event to see if/when the window got resized.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4