This feature is well established and works across many devices and browser versions. It’s been available across browsers since April 2018.
The origin read-only property of the HTMLAreaElement interface returns a string containing the Unicode serialization of the origin of the <area> element's href.
The exact structure varies depending on the type of URL:
ftp:, http:, https:, ws:, and wss: schemes, the protocol followed by //, followed by the host. Same as host, the port is only included if it's not the default for the protocol.file: scheme, the value is browser dependent.blob: scheme, the origin of the URL following blob:, but only if that URL uses the http:, https:, or file: scheme. For example, blob:https://mozilla.org will have https://mozilla.org.For all other cases, the string "null" is returned.
See URL.origin for more information.
A string.
// An <area id="myArea" href="https://developer.mozilla.org/en-US/HTMLAreaElement"> element is in the document
const area = document.getElementById("myArea");
area.origin; // returns 'https://developer.mozilla.org'
| Specification |
|---|
| HTML> # dom-hyperlink-origin-dev> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
origin |
32 | 17 | 26Before Firefox 49, results for URL using theblob scheme incorrectly returned null. |
19 | 10 | 32 | 26Before Firefox for Android 49, results for URL using theblob scheme incorrectly returned null. |
19 | 10 | 2.0 | 4.4.3 | 10 |
HTMLAreaElement interface it belongs to.
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLAreaElement/origin