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.
[Read Only] [Experimental]
The URLUtilsReadOnly.hash read-only property returns a web.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. [Read Only] [Experimental] The URLUtilsReadOnly.hash read-only property returns a `web.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.
[Read Only] [Experimental]
The URLUtilsReadOnly.host read-only property returns a web.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. [Read Only] [Experimental] The URLUtilsReadOnly.host read-only property returns a `web.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.
[Read Only] [Experimental]
The URLUtilsReadOnly.hostname read-only property returns a web.DOMString
the domain of the URL.
string = object.hostname;
See also: https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/hostname
Property. [Read Only] [Experimental] The URLUtilsReadOnly.hostname read-only property returns a `web.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.
[Read Only] [Experimental]
The URLUtilsReadOnly.href read-only property returns a web.DOMString
the whole URL.
string = object.href;
See also: https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/href
Property. [Read Only] [Experimental] The URLUtilsReadOnly.href read-only property returns a `web.DOMString` the whole URL. `string = object.href;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/href`
(origin this)
Property.
[Read Only] [Experimental]
The URLUtilsReadOnly.origin read-only property is a web.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. [Read Only] [Experimental] The URLUtilsReadOnly.origin read-only property is a `web.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.
[Read Only] [Experimental]
The URLUtilsReadOnly.pathname read-only property returns a web.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. [Read Only] [Experimental] The URLUtilsReadOnly.pathname read-only property returns a `web.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.
[Read Only] [Experimental]
The URLUtilsReadOnly.port read-only property returns a web.DOMString
the port number of the URL.
string = object.port;
See also: https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/port
Property. [Read Only] [Experimental] The URLUtilsReadOnly.port read-only property returns a `web.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.
[Read Only] [Experimental]
The URLUtilsReadOnly.protocol read-only property returns a web.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. [Read Only] [Experimental] The URLUtilsReadOnly.protocol read-only property returns a `web.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.
[Read Only] [Experimental]
The URLUtilsReadOnly.search read-only property returns a web.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. [Read Only] [Experimental] The URLUtilsReadOnly.search read-only property returns a `web.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.
[Experimental]
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. [Experimental] 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 is a website building & hosting documentation for Clojure/Script libraries
× close