Firefox Tomorrow

web api instance property

SVGImageElement: href property

View on MDN ↗

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

Value

An SVGAnimatedString object.

Examples

Accessing the href property

// 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

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.