Dr. Rajesh Rolen
Dr. Rajesh Rolen

Reputation: 14285

How to set PopUp Window size

I have opend a popup window using javascript. now in that popup window i have got a button and on click on that button i wants to changes size of that (current/same page) popup window.

Please tell me how we can do this. Thanks

Upvotes: 4

Views: 15809

Answers (2)

Damien-Wright
Damien-Wright

Reputation: 7544

IE:

self.resizeTo(500,400);

Other browsers:

window.outerHeight = 500;
window.outerWidth = 400; 

Those examples were from the site mentioned below:

http://www.perlscriptsjavascripts.com/tutorials/javascript/window_1.html

Hope that helps :)

Upvotes: 2

Dr.Molle
Dr.Molle

Reputation: 117334

The methods you have to use are resizeTo() or resizeBy().

The option to resize a window may be restricted by browser-settings.

Upvotes: 3

Related Questions