SVGAElement: host property

The host property of the SVGAElement interface is a string containing the hostname of the SVG <a> element's href, followed by a ":" and the port if the URL has one. If the URL does not have a hostname, this property contains an empty string, "".

This property can be set to change the host of the URL. Setting it also rewrites the element's href attribute as a complete, absolute URL.

See URL.host for more information.

Value

A string.

Examples

html
<svg viewBox="0 0 200 30" xmlns="http://www.w3.org/2000/svg">
  <a id="link" href="https://example.com/">
    <text x="0" y="20">Example</text>
  </a>
</svg>
js
const link = document.getElementById("link");
console.log(link.host); // "example.com"

link.setAttribute("href", "https://example.com:443/");
console.log(link.host); // "example.com"
// The port number is not included because 443 is the scheme's default port

link.setAttribute("href", "https://example.com:4097/");
console.log(link.host); // "example.com:4097"

Specifications

Specification
Scalable Vector Graphics (SVG) 2
# InterfaceSVGAElement

Browser compatibility

See also