HTMLAreaElement: origin property
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since April 2018.
Theorigin read-only property of theHTMLAreaElement interface returns a string containing the Unicode serialization of the origin of the<area> element'shref.
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
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.
SeeURL.origin for more information.
In this article
Value
A string.
Examples
js
// An <area href="https://developer.mozilla.org/en-US/HTMLAreaElement"> element is in the documentconst area = document.getElementById("myArea");area.origin; // returns 'https://developer.mozilla.org'Specifications
| Specification |
|---|
| HTML> # dom-hyperlink-origin-dev> |
Browser compatibility
See also
- The
HTMLAreaElementinterface it belongs to.