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?
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?
I have tried to put this one on Chrome version 25.0.1364.172
and it correspond the exact height and width of the window.
to check, please use
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.