function open_window(link,w,h) { var win = "width="+w+",height="+h+",menubar=no,location=no,scrollbars=yes"; newWin = window.open(link,'newWin',win); newWin.focus(); } I tried to put newWin.resizable (no); nothing comes out
function open_window(link,w,h) { var win = "width="+w+",height="+h+",menubar=no,location=no,scrollbars=yes"; newWin = window.open(link,'newWin',win); newWin.focus(); } I tried to put newWin.resizable (no); nothing comes out
Source: https://ru.stackoverflow.com/questions/583123/
All Articles
resizable=yesexplicitly says that you can resize. In general, it depends on the browser, some may not care about the properties specified in the parameters - Grundy