Make window not resizable in Chrome

google-chrome, javascript

Solution

This is old school javascript. Modern browsers tend to not allow this because it is seen as a user unfriendly limitation.

Problem

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.

Original source

Related problems