HTMLAreaElement: origin property - Web APIs | MDN (original) (raw)

Baseline

Widely available

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:

For all other cases, the string "null" is returned.

See URL.origin for more information.

Value

A string.

Examples

// 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 # dom-hyperlink-origin-dev

Browser compatibility

See also