Liking cljdoc? Tell your friends :D

web.url.HTMLHyperlinkElementUtils

The HTMLHyperlinkElementUtils mixin defines utility methods and to work with web.dom.HTMLAnchorElement and web.dom.HTMLAreaElement. utilities allow to deal with common features like URLs.

The HTMLHyperlinkElementUtils mixin defines utility methods and
to work with `web.dom.HTMLAnchorElement` and `web.dom.HTMLAreaElement`.
utilities allow to deal with common features like URLs.
raw docstring

hashcljs

(hash this)

Property.

The HTMLHyperlinkElementUtils.hash property returns a web.DOMString a '#' followed by the fragment identifier of the URL.

string = object.hash;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/hash

Property.

The HTMLHyperlinkElementUtils.hash property returns a `web.DOMString`
a '#' followed by the fragment identifier of the URL.

`string = object.hash;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/hash`
sourceraw docstring

hostcljs

(host this)

Property.

The HTMLHyperlinkElementUtils.host property is a web.USVString the host, that is the hostname, and then, if the port of the is nonempty, a ':', and the port of the URL.

string = object.host; object.host = string;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/host

Property.

The HTMLHyperlinkElementUtils.host property is a `web.USVString`
the host, that is the hostname, and then, if the port of the
is nonempty, a ':', and the port of the URL.

`string = object.host;
object.host = string;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/host`
sourceraw docstring

hostnamecljs

(hostname this)

Property.

The HTMLHyperlinkElementUtils.hostname property is a web.USVString the domain of the URL.

string = object.hostname; object.hostname = string;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/hostname

Property.

The HTMLHyperlinkElementUtils.hostname property is a `web.USVString`
the domain of the URL.

`string = object.hostname;
object.hostname = string;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/hostname`
sourceraw docstring

hrefcljs

(href this)

Property.

The HTMLHyperlinkElementUtils.href property is a web.USVString the whole URL.

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/href

Property.

The HTMLHyperlinkElementUtils.href property is a `web.USVString`
the whole URL.

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/href`
sourceraw docstring

origincljs

(origin this)

Property.

[Read Only]

The HTMLHyperlinkElementUtils.origin read-only property is a containing the Unicode serialization of the origin of the represented

string = object.origin;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/origin

Property.

[Read Only]

The HTMLHyperlinkElementUtils.origin read-only property is a
containing the Unicode serialization of the origin of the represented

`string = object.origin;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/origin`
sourceraw docstring

passwordcljs

(password this)

Property.

[Read Only]

The HTMLHyperlinkElementUtils.password property is a web.USVString the password specified before the domain name.

string = object.password; object.password = string;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/password

Property.

[Read Only]

The HTMLHyperlinkElementUtils.password property is a `web.USVString`
the password specified before the domain name.

`string = object.password;
object.password = string;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/password`
sourceraw docstring

pathnamecljs

(pathname this)

Property.

The HTMLHyperlinkElementUtils.pathname property is a web.USVString an initial '/' followed by the path of the URL (or the empty if there is no path).

string = object.pathname; object.pathname = string;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/pathname

Property.

The HTMLHyperlinkElementUtils.pathname property is a `web.USVString`
an initial '/' followed by the path of the URL (or the empty
if there is no path).

`string = object.pathname;
object.pathname = string;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/pathname`
sourceraw docstring

portcljs

(port this)

Property.

The HTMLHyperlinkElementUtils.port property is a web.USVString the port number of the URL. If the URL does not contain an explicit number, it will be set to ''.

string = object.port; object.port = string;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/port

Property.

The HTMLHyperlinkElementUtils.port property is a `web.USVString`
the port number of the URL. If the URL does not contain an explicit
number, it will be set to ''.

`string = object.port;
object.port = string;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/port`
sourceraw docstring

protocolcljs

(protocol this)

Property.

The HTMLHyperlinkElementUtils.protocol property is a web.USVString the protocol scheme of the URL, including the final ':'.

string = object.protocol; object.protocol = string;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/protocol

Property.

The HTMLHyperlinkElementUtils.protocol property is a `web.USVString`
the protocol scheme of the URL, including the final ':'.

`string = object.protocol;
object.protocol = string;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/protocol`
sourceraw docstring

(search this)

Property.

The HTMLHyperlinkElementUtils.search property is a search string, called a query string, that is web.USVString containing a '?' by the parameters of the URL.

string = object.search; object.search = string;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/search

Property.

The HTMLHyperlinkElementUtils.search property is a search string,
called a query string, that is `web.USVString` containing a '?'
by the parameters of the URL.

`string = object.search;
object.search = string;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/search`
sourceraw docstring

set-hash!cljs

(set-hash! this val)

Property.

The HTMLHyperlinkElementUtils.hash property returns a web.DOMString a '#' followed by the fragment identifier of the URL.

string = object.hash;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/hash

Property.

The HTMLHyperlinkElementUtils.hash property returns a `web.DOMString`
a '#' followed by the fragment identifier of the URL.

`string = object.hash;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/hash`
sourceraw docstring

set-host!cljs

(set-host! this val)

Property.

The HTMLHyperlinkElementUtils.host property is a web.USVString the host, that is the hostname, and then, if the port of the is nonempty, a ':', and the port of the URL.

string = object.host; object.host = string;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/host

Property.

The HTMLHyperlinkElementUtils.host property is a `web.USVString`
the host, that is the hostname, and then, if the port of the
is nonempty, a ':', and the port of the URL.

`string = object.host;
object.host = string;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/host`
sourceraw docstring

set-hostname!cljs

(set-hostname! this val)

Property.

The HTMLHyperlinkElementUtils.hostname property is a web.USVString the domain of the URL.

string = object.hostname; object.hostname = string;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/hostname

Property.

The HTMLHyperlinkElementUtils.hostname property is a `web.USVString`
the domain of the URL.

`string = object.hostname;
object.hostname = string;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/hostname`
sourceraw docstring

set-href!cljs

(set-href! this val)

Property.

The HTMLHyperlinkElementUtils.href property is a web.USVString the whole URL.

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/href

Property.

The HTMLHyperlinkElementUtils.href property is a `web.USVString`
the whole URL.

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/href`
sourceraw docstring

set-pathname!cljs

(set-pathname! this val)

Property.

The HTMLHyperlinkElementUtils.pathname property is a web.USVString an initial '/' followed by the path of the URL (or the empty if there is no path).

string = object.pathname; object.pathname = string;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/pathname

Property.

The HTMLHyperlinkElementUtils.pathname property is a `web.USVString`
an initial '/' followed by the path of the URL (or the empty
if there is no path).

`string = object.pathname;
object.pathname = string;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/pathname`
sourceraw docstring

set-port!cljs

(set-port! this val)

Property.

The HTMLHyperlinkElementUtils.port property is a web.USVString the port number of the URL. If the URL does not contain an explicit number, it will be set to ''.

string = object.port; object.port = string;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/port

Property.

The HTMLHyperlinkElementUtils.port property is a `web.USVString`
the port number of the URL. If the URL does not contain an explicit
number, it will be set to ''.

`string = object.port;
object.port = string;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/port`
sourceraw docstring

set-protocol!cljs

(set-protocol! this val)

Property.

The HTMLHyperlinkElementUtils.protocol property is a web.USVString the protocol scheme of the URL, including the final ':'.

string = object.protocol; object.protocol = string;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/protocol

Property.

The HTMLHyperlinkElementUtils.protocol property is a `web.USVString`
the protocol scheme of the URL, including the final ':'.

`string = object.protocol;
object.protocol = string;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/protocol`
sourceraw docstring

set-search!cljs

(set-search! this val)

Property.

The HTMLHyperlinkElementUtils.search property is a search string, called a query string, that is web.USVString containing a '?' by the parameters of the URL.

string = object.search; object.search = string;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/search

Property.

The HTMLHyperlinkElementUtils.search property is a search string,
called a query string, that is `web.USVString` containing a '?'
by the parameters of the URL.

`string = object.search;
object.search = string;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/search`
sourceraw docstring

set-username!cljs

(set-username! this val)

Property.

The HTMLHyperlinkElementUtils.username property is a web.USVString the username specified before the domain name.

string = object.username; object.username = string;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/username

Property.

The HTMLHyperlinkElementUtils.username property is a `web.USVString`
the username specified before the domain name.

`string = object.username;
object.username = string;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/username`
sourceraw docstring

to-stringcljs

(to-string this)

Method.

The HTMLHyperlinkElementUtils.toString() stringifier method returns web.USVString containing the whole URL. It is a read-only version HTMLHyperlinkElementUtils.href.

string = object.toString();

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/toString

Method.

The HTMLHyperlinkElementUtils.toString() stringifier method returns
`web.USVString` containing the whole URL. It is a read-only version
`HTMLHyperlinkElementUtils.href`.

`string = object.toString();`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/toString`
sourceraw docstring

usernamecljs

(username this)

Property.

The HTMLHyperlinkElementUtils.username property is a web.USVString the username specified before the domain name.

string = object.username; object.username = string;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/username

Property.

The HTMLHyperlinkElementUtils.username property is a `web.USVString`
the username specified before the domain name.

`string = object.username;
object.username = string;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/username`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close