faqts : Computers : Programming : Languages : JavaScript : Windows

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

25 of 39 people (64%) answered Yes
Recently 4 of 10 people (40%) answered Yes

Entry

How can I make a window non resizable?

May 8th, 2000 08:17
Martin Honnen,


When you open a window with
  open ('whatever.html', 'windowName', 'resizable=0')
it is not resizable.
NN4 also offers
  window.setResizable(false)
for an already opened window. The manual warns about that not working 
on all platforms and I have only checked it on Win9x to work.