admin管理员组

文章数量:1296843

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

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

Share Improve this question asked Dec 3, 2010 at 9:07 Dr. Rajesh RolenDr. Rajesh Rolen 14.3k42 gold badges110 silver badges180 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 3

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

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

IE:

self.resizeTo(500,400);

Other browsers:

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

Those examples were from the site mentioned below:

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

Hope that helps :)

本文标签: javascriptHow to set PopUp Window sizeStack Overflow