Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

window.open width ignored in Chrome

I want to create a popup of a fixed size, however the width attribute is ignored in Chrome. But Works fine in FF.

Here's my code:

window.open('','','width=300');

The resultant popup is larger than the given width.

Any suggestions?

like image 458
Hadiyah Mujhid Avatar asked Mar 18 '13 07:03

Hadiyah Mujhid


2 Answers

it would seem to be some bizarre quirk in Chrome, that you have to specify both a width and a height to get it to observe the dimensions set. If you only specify a height, or a width, then that single dimension is ignored. Hence why in the other answer it worked fine for Jeff.

like image 171
Andy Lorenz Avatar answered Nov 20 '22 07:11

Andy Lorenz


I have tried to put this one on Chrome version 25.0.1364.172

window.open('','','width=200,height=100');

and it correspond the exact height and width of the window.

to check, please use

window.innerHeight; //to display height
window.innerWidth; //to display width
like image 33
Jeff Robert Dagala Avatar answered Nov 20 '22 07:11

Jeff Robert Dagala