HTMLAreaElement: origin property
  The
  HTMLAreaElement.origin read-only property is a
  string containing the Unicode serialization of the origin of the
  represented URL.
That is:
- 
    for URL using the httporhttps, the scheme followed by'://', followed by the domain, followed by':', followed by the port (the default port,80and443respectively, if explicitly specified);
- for URL using file:scheme, the value is browser dependent;
- 
    for URL using the blob:scheme, the origin of the URL followingblob:. E.g"blob:https://mozilla.org"will have"https://mozilla.org".
Value
A string.
Examples
js
// 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'
Specifications
| Specification | 
|---|
| HTML Standard # dom-hyperlink-origin-dev | 
Browser compatibility
BCD tables only load in the browser
See also
- The HTMLAreaElementinterface it belongs to.