The obsolete URLUtilsReadOnly interface previously defined utility
for working with URLs. These were then inherited by other interfaces,
as web.workers.WorkerLocation.
The obsolete URLUtilsReadOnly interface previously defined utility for working with URLs. These were then inherited by other interfaces, as `web.workers.WorkerLocation`.
(hash this)Property.
The URLUtilsReadOnly.hash read-only property returns a web.dom.DOMString
a '#' followed by the fragment identifier of the URL. The hash
not percent encoded.
string = object.hash;
See also: https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/hash
Property. The URLUtilsReadOnly.hash read-only property returns a `web.dom.DOMString` a '#' followed by the fragment identifier of the URL. The hash not percent encoded. `string = object.hash;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/hash`
(host this)Property.
The URLUtilsReadOnly.host read-only property returns a web.dom.DOMString
the host, that is the hostname, a ':', and the port of the URL.
string = object.host;
See also: https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/host
Property. The URLUtilsReadOnly.host read-only property returns a `web.dom.DOMString` the host, that is the hostname, a ':', and the port of the URL. `string = object.host;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/host`
(hostname this)Property.
The URLUtilsReadOnly.hostname read-only property returns a web.dom.DOMString
the domain of the URL.
string = object.hostname;
See also: https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/hostname
Property. The URLUtilsReadOnly.hostname read-only property returns a `web.dom.DOMString` the domain of the URL. `string = object.hostname;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/hostname`
(href this)Property.
The URLUtilsReadOnly.href read-only property returns a web.dom.DOMString
the whole URL.
string = object.href;
See also: https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/href
Property. The URLUtilsReadOnly.href read-only property returns a `web.dom.DOMString` the whole URL. `string = object.href;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/href`
(origin this)Property.
The URLUtilsReadOnly.origin read-only property is a web.dom.DOMString
the Unicode serialization of the origin of the represented URL,
is, for http and https, the scheme followed by '://', followed
the domain, followed by ':', followed by the port (the default
80 and 443 respectively, if explicitely specified). For URL using
scheme, the value is browser dependant.
string = object.origin;
See also: https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/origin
Property. The URLUtilsReadOnly.origin read-only property is a `web.dom.DOMString` the Unicode serialization of the origin of the represented URL, is, for http and https, the scheme followed by '://', followed the domain, followed by ':', followed by the port (the default 80 and 443 respectively, if explicitely specified). For URL using scheme, the value is browser dependant. `string = object.origin;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/origin`
(pathname this)Property.
The URLUtilsReadOnly.pathname read-only property returns a web.dom.DOMString
an initial '/' followed by the path of the URL.
string = object.pathname;
See also: https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/pathname
Property. The URLUtilsReadOnly.pathname read-only property returns a `web.dom.DOMString` an initial '/' followed by the path of the URL. `string = object.pathname;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/pathname`
(port this)Property.
The URLUtilsReadOnly.port read-only property returns a web.dom.DOMString
the port number of the URL.
string = object.port;
See also: https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/port
Property. The URLUtilsReadOnly.port read-only property returns a `web.dom.DOMString` the port number of the URL. `string = object.port;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/port`
(protocol this)Property.
The URLUtilsReadOnly.protocol read-only property returns a web.dom.DOMString
the protocol scheme of the URL, including the final ':'.
string = object.protocol;
See also: https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/protocol
Property. The URLUtilsReadOnly.protocol read-only property returns a `web.dom.DOMString` the protocol scheme of the URL, including the final ':'. `string = object.protocol;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/protocol`
(search this)Property.
The URLUtilsReadOnly.search read-only property returns a web.dom.DOMString
a '?' followed by the parameters of the URL.
string = object.search;
See also: https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/search
Property. The URLUtilsReadOnly.search read-only property returns a `web.dom.DOMString` a '?' followed by the parameters of the URL. `string = object.search;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/search`
(to-string this)Method.
The URLUtilsReadOnly.toString() stringifier method returns a
containing the whole URL. It is a synonym for URLUtilsReadOnly.href.
string = object.toString();
See also: https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/toString
Method. The URLUtilsReadOnly.toString() stringifier method returns a containing the whole URL. It is a synonym for `URLUtilsReadOnly.href`. `string = object.toString();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/toString`
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs | 
| ← | Move to previous article | 
| → | Move to next article | 
| Ctrl+/ | Jump to the search field |