javascript window setInterval( )

Starts a timer that continually invokes the expression every msecs. Other scripts can run in the time between calls to expression. This method is usef

javascript window setCursor( )

Changes the cursor to a desired type. This method is an alternate to the style sheet cursor attribute. Starting with Netscape 6.2, a cursor changed

javascript window scrollTo( )

Scrolls the document in the window to a specific scrolled pixel position. # Horizontal position in pixels of the window. # Vertical position in pixels

javascript window scrollByLines( ), scrollByPages( )

Scroll the document in the window downward (positive value) or upward (negative value) by the increment of lines or pages. The methods perform the s

javascript window scrollBy( )

Scrolls the document in the window by specified pixel amounts along both axes. To adjust along only one axis, set the other value to zero. Positive

javascript window scroll( )

Sets the scrolled position of the document inside the current window or frame. To return the document to its unscrolled position, set both parameter

javascript window routeEvent( )

Used inside an event handler function, this method directs Navigator 4 (only) to let the event pass to its intended target object.

javascript window resizeTo( )

This is a convenience method that adjusts the height and width of the window to specific pixel sizes. The top and left edges of the window remain fixe

javascript window resizeBy( )

This is a convenience method that shifts the width and height of the window by specified pixel amounts. To adjust along only one axis, set the other

javascript window removeEventListener( )

removeEventListener ( "eventType", listenerFunction, useCapture ). Netscape 6 implements this W3C DOM event model method for the window obje

javascript window releaseEvents( )

The opposite of window.captureEvents( ) , this method turns off event capture at the window level for one or more specific events named in the para

javascript window prompt( )

Displays a dialog box with a message, a one-line text entry field, and two clickable buttons. Script execution halts while the dialog box appears. T

javascript window print( )

Starts the printing process for the window or frame. A user must still confirm the print dialog box to send the document to the printer. This method

javascript window open( )

Opens a new window. You can specify a URL to load into the new window or set that parameter to an empty string to allow scripts to document.write( ) i

javascript window navigate( )

Loads a new document into the window or frame. This is the IE-specific way of assigning a value to the window.location.href property.