HTML | Window resizeTo() Method
The resizeTo() method is used to resizes a window to the specified width and height.
Syntax:
window.resizeTo(width, height)
Parameter Values:
- width: Sets the width of the window, in pixels.
- height: Sets the height of the window, in pixels.
Example: Resize the window.
<!DOCTYPE html> < html > < head > < title > Window resizeTo() Method </ title > < style > h1 { color: green; } </ style > </ head > < body > < center > < h1 >Geeks for Geeks</ h1 > < button onclick = "openWin()" > New window </ button > < button onclick = "resizeWin()" > Resize window </ button > < script > var myWindow; function openWin() { myWindow = window.open("", "", "width=100, height=100"); } function resizeWin() { myWindow.resizeTo(300, 300); myWindow.focus(); } </ script > </ center > </ body > </ html > |
Output:
Initial:
New window:
Resize window:
Supported Browsers: The browser supported by Window resizeTo() Method are listed below:
- Google Chrome
- Internet Explorer
- Mozilla Firefox
- Opera
- Safari