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

Baseline

Widely available

Note: This feature is available in Web Workers.

The origin read-only property of the Location interface returns a string containing the Unicode serialization of the origin of the location's URL.

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

console.log(window.location.origin); // On this page returns 'https://developer.mozilla.org'

Specifications

Specification
HTML # dom-location-origin-dev

Browser compatibility

See also