how to disable firefox maximize button for popup window?
A:
You can use the attribute
resizable
to be false to prevent the resizing of the new window.
window.open("http://www.domainname.ext/yourfile","windowname","resizable=no");
Read more here
rahul
2009-08-31 12:56:35
see , this option applicable for only IE. not for firefox, safari, opera.
Lalit
2010-05-14 06:47:33
A:
You can flag a popup as non-resizeable like this:
window.open('http://example.com/', 'popUpWindow', 'width=400,height=150,
resizable=no
,scrollbars=yes');
ceejayoz
2009-08-31 12:56:52
A:
when opening the window, use resizable=no or resizable=0
window.open("sample.aspx", "samplename", "resizable=no");
mschmidt42
2009-08-31 12:57:54