Home | Top | Web development | JavaScript Editor | Get Advanced JavaScript and Ajax Editor, Validator and Debugger! 1st JavaScript Editor. |
Opens a new window and loads the document specified by a given URL.
As of Internet Explorer 6, the _media value of the sName parameter specifies that this method loads a URL into the HTML content area of the Media Bar.
Syntax
oNewWindow = window.open( [ sURL ] [ , sName ] [ , sFeatures ] [ , bReplace ] )Parameters
sURL | Optional. String that specifies the URL of the document to display. If no URL is specified, a new window with about:blank is displayed. | ||||||||||||||||||||||||||||
sName | Optional. String that specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an a element.
|
||||||||||||||||||||||||||||
sFeatures | Optional. This String parameter is a list of items separated by commas. Each item consists of an option and a value, separated by an equals sign (for example, "fullscreen=yes, toolbar=yes"). The following features are supported.
|
||||||||||||||||||||||||||||
bReplace | Optional. When the sURL is loaded into the same window, this Boolean parameter specifies whether the sURL creates a new entry or replaces the current entry in the window's history list.
|
Return Value
Returns a reference to the new window object. Use this reference to access properties and methods on the new window.
Remarks
By default, the open method creates a window that has a default width and height and the standard menu, toolbar, and other features of Internet Explorer. You can alter this set of features by using the sFeatures parameter. This parameter is a string consisting of one or more feature settings.
When the sFeatures parameter is specified, the features that are not defined in the parameter are disabled. Therefore, when using the sFeatures parameter, it is necessary to enable all the features that are to be included in the new window. If the sFeatures parameter is not specified, the window features maintain their default values. In addition to enabling a feature by setting it to a specific value, simply listing the feature name also enables that feature for the new window.
Internet Explorer 5 allows further control over windows through the implementation of title in the sFeatures parameter of the open method. Turn off the title bar by opening the window from a trusted application, such as Microsoft Visual Basic® or an HTML Application (HTA). These applications are considered trusted, because each uses Internet Explorer interfaces instead of the browser.
When a function fired by an event on any object calls the open method, the window. open method is implied. <SCRIPT LANGUAGE="JScript"> function foo() { open ('about:blank');} </SCRIPT> <BODY onclick="foo();"> Click this page and window. open () is called. </BODY>
When an event on any object calls the open method, the document. open method is implied. <BUTTON onclick=" open ('Sample.htm');"> Click this button and document. open () is called. </BUTTON>
Example
This example uses the open method to create a new window that contains Sample.htm. The new window is 200 pixels by 400 pixels and has a status bar, but it does not have a toolbar, menu bar, or address field.
window. open ("Sample.htm",null, "height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");Standards Information
This method is defined in World Wide Web Consortium (W3C) Document Object Model (DOM) Level 1 .
Applies To
|
window |
Home | Top | Web development | JavaScript Editor | Get Advanced JavaScript and Ajax Editor, Validator and Debugger! 1st JavaScript Editor. |