OBJECT | EXPLANATION | DEF
|
defaultStatus | Reflects the default message displayed in the window's status bar. | NS2+
|
document | Contains information on the current document, and provides methods for displaying HTML output to the user. | NS2+
|
frames | An array reflecting all the frames in a window. | NS2+
|
length | The number of frames in the window. | NS2+
|
location | Contains information on the current URL. | NS2+
|
name | A unique name used to refer to this window. | NS2+
|
parent | A synonym for a window or frame whose frameset contains the current frame. | NS2+
|
self | A synonym for the current window. | NS2+
|
status | Specifies a priority or transient message in the window's status bar. | NS2+
|
top | A synonym for the top most browser window. | NS2+
|
window | A synonym for the current window. | NS2+
|
alert | Displays an Alert dialog box with a message and an OK button. | NS2+
|
clearTimeout | Cancels a timeout that was set with the setTimeout method. | NS2+
|
close | Closes the specified window. | NS2+
|
confirm | Displays a Confirm dialog box with the specified message and OK and Cancel buttons. | NS2+
|
open | Opens a new web browser window. | NS2+
|
print | Prints the contents of the window or frame. | NS2+
|
prompt | Displays a Prompt dialog box with a message and an input field. | NS2+
|
setTimeout | Evaluates an expression or calls a function once after a specified number of milliseconds has elapsed. | NS2+
|
closed | Specifies whether a window has been closed. | NS3+
|
history | Contains information on the URLs that the client has visited within a window. | NS3+
|
opener | Specifies the window name of the calling document when a window is opened using the open method | NS3+
|
blur | Removes focus from the specified object. | NS3+
|
focus | Gives focus to the specified object. | NS3+
|
scroll | Scrolls a window to a specified coordinate. | NS3+
|
innerHeight | Specifies the vertical dimension, in pixels, of the window's content area. | NS4+
|
innerWidth | Specifies the horizontal dimension, in pixels, of the window's content area. | NS4+
|
outerHeight | Specifies the vertical dimension, in pixels, of the window's outside boundary. | NS4+
|
outerWidth | Specifies the horizontal dimension, in pixels, of the window's outside boundary. | NS4+
|
pageXOffset | Provides the current x-position, in pixels, of a window's viewed page. | NS4+
|
pageYOffset | Provides the current y-position, in pixels, of a window's viewed page. | NS4+
|
personalbar | Represents the browser window's personal bar (also called the directories bar). | NS4+
|
scrollbars | Represents the browser window's scroll bars. | NS4+
|
statusbar | Represents the browser window's status bar. | NS4+
|
toolbar | Represents the browser window's tool bar. | NS4+
|
back | Undoes the last history step in any frame within the top level window. | NS4+
|
captureEvents | Sets the window or document to capture all events of the specified type. | NS4+
|
clearInterval | Cancels a timeout that was set with the setInterval method. | NS4+
|
disableExternalCapture | Disables external event capturing set by the enableExternalCapture method. | NS4+
|
enableExternalCapture | Allows a window with frames to capture events in pages loaded from different locations (servers). | NS4+
|
find | Finds the specified text string in the contents of the specified window. | NS4+
|
forward | Loads the next URL in the history list. | NS4+
|
handleEvent | Invokes the handler for the specified event. | NS4+
|
home | Points the browser to the URL specified in preferences as the user's home page. | NS4+
|
locationbar | Represents the browser window's location bar. | NS4+
|
menubar | Represents the browser window's menu bar. | NS4+
|
moveBy | Moves the window by the specified amounts. | NS4+
|
moveTo | Moves the top left corner of the window to the specified screen coordinates. | NS4+
|
releaseEvents | Sets the window to release captured events of the specified type, sending the event to objects further along the event hierarchy. | NS4+
|
resizeBy | Resizes an entire window by moving the window's bottom right corner by the specified amount. | NS4+
|
resizeTo | Resizes an entire window to the specified outer height and width. | NS4+
|
routeEvent | Passes a captured event along the normal event hierarchy. | NS4+
|
scrollBy | Scrolls the viewing area of a window by the specified amount. | NS4+
|
scrollTo | Scrolls the viewing area of the window to the specified coordinates, such that the specified point becomes the top left corner. | NS4+
|
setInterval | Evaluates an expression or calls a function every time a specified number of milliseconds elapses. | NS4+
|
stop | Stops the current download. | NS4+
|