How can I create a window from JavaScript that is not maximizable?
Created May 4, 2012
Renato Michielin Use the "resizable" feature as argument of the window.open method:
newWin = window.open("http://www.jguru.com", "winname", "width=300,height=300,resizable=no");