SVGAElement
The SVGAElement interface provides access to the properties of an <a> element, as well as methods to manipulate them.
Instance properties
This interface also inherits properties from its parent, SVGGraphicsElement, and implements properties from HTMLHyperlinkElementUtils.
SVGAElement.downloadSVGAElement.hrefRead only-
An
SVGAnimatedStringthat reflects thehreforxlink:hrefattribute. SVGAElement.hreflang-
A string that reflects the
hreflangattribute, indicating the language of the linked resource. SVGAElement.ping-
A string that reflects the ping attribute, containing a space-separated list of URLs to which, when the hyperlink is followed,
POSTrequests with the bodyPINGwill be sent by the browser (in the background). Typically used for tracking. SVGAElement.referrerPolicySVGAElement.relSVGAElement.relListSVGAElement.targetRead only-
It corresponds to the
targetattribute of the given element. SVGAElement.text-
A string being a synonym for the
Node.textContentproperty. SVGAElement.type-
A string that reflects the
typeattribute, indicating the MIME type of the linked resource.
Instance methods
This interface has no methods but inherits methods from its parent, SVGGraphicsElement.
Example
In the example below, the target attribute of the <a> element is set to _blank and when the link is clicked, it logs to notify whether the condition is met or not.
js
const linkRef = document.querySelector("a");
linkRef.target = "_self";
linkRef.onclick = () => {
if (linkRef.target === "_blank") {
console.log("BLANK!");
linkRef.target = "_self";
} else {
console.log("SORRY! not _blank");
}
};
Specifications
| Specification |
|---|
| Scalable Vector Graphics (SVG) 2 # InterfaceSVGAElement |
Browser compatibility
BCD tables only load in the browser
See also
- SVG
<a>element