SVGImageElement: href property

The href read-only property of the SVGImageElement interface reflects the href or xlink:href attribute of the given <image> element.

Value

An SVGAnimatedString object.

Examples

undefined

Accessing the href property

js
// Get the SVG image element
const imageElement = document.querySelector("image");

// Access the href property
const href = imageElement.href.baseVal;

console.log(href); // Output: The href value

Specifications