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?

23 of 36 people (64%) answered Yes
Recently 6 of 10 people (60%) answered Yes

Entry

How do you open a new window?

Apr 15th, 2000 16:15
Martin Honnen, Ryan Thomson, http://developer.netscape.com/docs/manuals/js/client/jsref/window.htm#1202731


You open a new window with the window object's 
  open
method which takes three arguments:
  open('url', 'windowName', 'featureString')
where the second and third argument are optional. To open a blank 
window use
  open('about:blank', 'windowName')