vote up 0 vote down star

how to disable firefox maximize button for popup window?

flag
3  
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 at 12:55
I voted to close the question. Sorry for that. – adamantium Aug 31 at 12:58
ada chaluva maakan phoenix. tell correct solution or else moodikitu iru – jreee Aug 31 at 13:00
See my answer. – adamantium Aug 31 at 13:01
And can you translate the above mentioned comment of yours to English. – adamantium Aug 31 at 13:03

4 Answers

vote up 1 vote down

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

try dialog=yes

link|flag
vote up 0 vote down

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

window.open("sample.aspx", "samplename", "resizable=no");
link|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.