up vote 1 down vote favorite
share [g+] share [fb]

how to disable firefox maximize button for popup window?

link|improve this question
4  
I don't think this is a SuperUser question, folks. I think he's asking if there's an attribute you can use in window.open to do this. – ceejayoz Aug 31 '09 at 12:55
I voted to close the question. Sorry for that. – rahul Aug 31 '09 at 12:58
ada chaluva maakan phoenix. tell correct solution or else moodikitu iru – jreee Aug 31 '09 at 13:00
See my answer. – rahul Aug 31 '09 at 13:01
And can you translate the above mentioned comment of yours to English. – rahul Aug 31 '09 at 13:03
feedback

6 Answers

https://developer.mozilla.org/En/DOM/Window.open

try dialog=yes

link|improve this answer
feedback

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

window.open

link|improve this answer
see , this option applicable for only IE. not for firefox, safari, opera. – Red Swan May 14 '10 at 6:47
feedback

You can flag a popup as non-resizeable like this:

window.open('http://example.com/', 'popUpWindow', 'width=400,height=150,resizable=no,scrollbars=yes');

link|improve this answer
this will not work – Red Swan May 14 '10 at 6:46
@Lalit Current versions of Firefox don't allow this for usability/accessibility reasons. – ceejayoz May 15 '10 at 1:42
feedback

when opening the window, use resizable=no or resizable=0

window.open("sample.aspx", "samplename", "resizable=no");
link|improve this answer
feedback

use javascript....

var width = 1028;
var height = 800;
window.moveTo((screen.availWidth/2)-(width/2),(screen.availHeight/2)-(height/2)) 
window.resizeTo(width,height);

window.onresize = function() {window.resizeTo(width,height); } 

\o/

link|improve this answer
feedback

Dear friend, unfortunately has no way to disable the minimize and maximize buttons in Firefox, Chrome, Opera, only in IE, this script is to force the size of the browser screen, so if someone wants to expand will not. Abs

use javascript....

var width = 1028;
var height = 800;
window.moveTo((screen.availWidth/2)-(width/2),(screen.availHeight/2)-(height/2)) 
window.resizeTo(width,height);

window.onresize = function() {window.resizeTo(width,height); } 

\o/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown