SVGAElement: origin property
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The origin read-only property of the SVGAElement interface represents the origin of the SVG <a> element's href: usually its scheme, domain, and port.
The exact structure varies depending on the type of URL:
- For URLs using the
ftp:,http:,https:,ws:, andwss:schemes, theprotocolfollowed by//, followed by thehost. Same ashost, theportis only included if it's not the default for the protocol. - For URLs using the
file:scheme, the value is browser dependent. - For URLs using the
blob:scheme, the origin of the URL followingblob:, but only if that URL uses thehttp:,https:, orfile:scheme. For example,blob:https://mozilla.orgwill havehttps://mozilla.org.
For all other cases, the string "null" is returned.
See URL.origin for more information.
Value
A string.
Examples
>Getting the origin of an SVG link
Given the following SVG:
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>
We can read the origin of the link:
js
const link = document.getElementById("link");
log(`origin: "${link.origin}"`); // origin: "https://example.com"
Specifications
| Specification |
|---|
| Scalable Vector Graphics (SVG) 2> # InterfaceSVGAElement> |
Browser compatibility
See also
- SVG
<a>element HTMLAnchorElement.origin