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?

8 of 10 people (80%) answered Yes
Recently 3 of 4 people (75%) answered Yes

Entry

How can I enlarge the width of the browser window, say 10 times the normal width ?

Aug 24th, 2000 15:53
Martin Honnen, Anonymous Account,


Generally you resize a window with
  window.resizeTo(width, height)
or
  window.resizeBy(dwidth, dheight)
However I think NN ignores width/height greater than the screen 
width/height. With IE you seem to be able to call
  window.resizeTo(10000, 600)
but I don't think that is in any way useful for the user.