Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I tried opening a new window using

window.open("lookup.htm","lookupWin", "height=400,width=500,resizable=false");

It works fine in IE, but in FF the pop up is still resizable. How can I disable this resizing in FF as well?

share|improve this question

3 Answers

up vote 8 down vote accepted

Read this one from mdc

Window functionality features

resizable

If this feature is set to yes, the new secondary window will be resizable.

Note: Starting with version 1.4, Mozilla-based browsers have a window

resizing grippy at the right end of the status bar, this ensures that users can resize the browser window even if the web author requested this secondary window to be non-resizable. In such case, the maximize/restore icon in the window's titlebar will be disabled and the window's borders won't allow resizing but the window will still be resizable via that grippy in the status bar.

Starting with Firefox 3, secondary windows are always resizable

Bug 177838 - Make all popup windows resizable, ignoring resizable=no

share|improve this answer
THe funny thing is...the argument by Firefox authors was that "the user knows best" regarding window size. Yet, there are several windows in Firefox itself that cant be resized... – truppo Nov 11 '09 at 13:49
1  
the user knows best !!! – Rakesh Juyal Nov 11 '09 at 15:05

I don't think you can. Firefox (and some other browsers) just ignore the "resizable" setting.

share|improve this answer
Good thing too. Web authors have consistently abused the windowFeatures and are now having these toys taken away from them. – bobince Nov 11 '09 at 14:42

Yes it doesn't work anymore. Try

<script type="text/javascript">
window.onresize = function() 
{
    window.resizeTo(500,500);
}
window.onclick = function() 
{
    window.resizeTo(500,500);
}
</script>
share|improve this answer
+1, from me, its working, but the problem is when you try to resize the window by dragging its sides or double click on the top task bar to resize it throws an error. – Bibhu Jul 18 '11 at 8:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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