I have some JavaScript that I use to make a window not resizable, something along the lines of:
window.open(URL, id, "resizable=no");
This works in most browsers but it appears to not be supported in Chrome. I have considered using JavaScript to watch for a re-size and set it back, but this is not ideal. Does anyone have any other suggestions? Thanks in advance.
Prevent Browser Resize Css CSS can be used to prevent browser resizing. By using the max-width property, you can set a maximum width for the browser window. If the browser window is resized to be smaller than the max-width, the browser will automatically adjust the size of the elements on the page.
You can not control the size of the window. You can use CSS to set min-width and min-height properties to ensure your page layout stays sane. using 'window.
This was easy to do with the old javascript with popups and a "resizable = 0" parameter a while ago, but current browsers do not allow this because they killed user's freedom. This initiative started with firefox and chrome followed him, probably the solution for this case is creating an chrome extension and that only works for chrome, but it seems a madness.
After some discussions, the consensus seems to be that window.open() should not be modified to parse "resizeable", at least at this time. The change would require modifications to Webkit, and the behavior would be inconsistent with Firefox and existing Webkit browsers.
see more here
We always allow a window to be resized, which is consistent with Firefox.
see more here
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With