Window.navigate() (Method)

Load a new URL into the window.

Availability:

JScript - 1.0
Internet Explorer - 3.02
Property/method value type:undefined
JavaScript syntax:IEmyWindow.navigate(aURL)
IEnavigate(aURL)
Argument list:aURLA new location to navigate the window to

This is functionally similar to assigning a new value to the window.location.href property. Because it is only available in MSIE you should avoid using this in cross-browser development.

Warnings:

Example code:

   // Reload the window with a new relative URL value

   window.navigate("_Window.html");

See also:Location object, Window.location