Knowledge Walls
Laya
Hyderabad, Andhra Pradesh, India
window.resizeBy() Method in Window Object of Javascript Syntax with Examples
2428 Views
Usage 
The resizeBy() method is used to resize current window based on mentioned values.
Syntax 
myWindow.resizeBy(x, y);
Example
<button onclick="resizeBy()">ResizeBy</button>
var   myWindow = window.open("", "myWindow", "width=200, height=100");

function resizeBy() {
    myWindow.resizeBy(250, 250);
    myWindow.focus();
}
Output 
Once we run the program, window will be opened with mentioned size.We can use resizeby button to make it to different size.
Best Lessons of "Javascript Syntax with Examples"
Top lessons which are viewed more times.
  Copyright © 2014 Knowledge walls, All rights reserved
KnowledgeWalls
keep your tutorials and learnings with KnowledgeWalls. Don't lose your learnings hereafter. Save and revise it whenever required.
Click here for more details