This is part of a Window object & it is accessed by the window. location property. It has the complete URL of any given Window object, or, if none is denoted, of current Window object. Syntax: All its properties are strings representing distinct portions of the URL, generally which takes the given form:
<protocol>//<host>[:<port>]/<pathname>[<hash>][<search>]
You can build a Location object through simply assigning a URL to the location property of an object:
Property
|
Description
|
Hash
|
The hash property is a string starting with a hash (#), which specifies an anchor name in an HTTP URL
|
Host
|
The host property is a string including the hostname & port strings.
|
hostname
|
The hostname property denote the server name, subdomain & domain name (or IP address) of a URL.
|
Href
|
The href property is a string defining the entire URL, and of which all other link properties are substrings.
|
pathname
|
The pathname property is a string portion of a URL defining how a specific resource can be accessed.
|
Port
|
The port property is a string defining the communications port that the server uses.
|
protocol
|
The protocol property is the string at the beginning of a URL, up to and
Including the first colon (:), that specifies the method of access to the URL.
|
|
Syntax: window.location = "file:///C:/Projects"