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.