MathMLAnchorElement: host property

The host property of the MathMLAnchorElement interface is a string containing the host, which is the hostname, and then, if the port of the URL is nonempty, a ":", followed by the port of the URL. If the URL does not have a hostname, this property contains an empty string, "".

See URL.host for more information.

Value

A string.

Examples

Basic usage

js
const mathAnchor = document.querySelector("a");

mathAnchor.href = "https://example.com/subsection";
mathAnchor.host === "example.com";

mathAnchor.href = "https://example.com:443";
mathAnchor.host === "example.com";
// The port number is not included because 443 is the scheme's default port

mathAnchor.href = "https://example.com:4097";
mathAnchor.host === "example.com:4097";

Specifications

Specification
HTML
# dom-hyperlink-host

Browser compatibility

See also

  • The MathML <a> element