This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The URLUtilsReadOnly
.origin
read-only property is a DOMString
containing the Unicode serialization of the origin of the represented URL, that is, for http and https, the scheme followed by '://'
, followed by the domain, followed by ':'
, followed by the port (the default port, 80
and 443
respectively, if explicitely specified). For URL using file:
scheme, the value is browser dependant.
This version of origin
is implemented by WorkerLocation
for use on workers.
string = object.origin;
// On this page, returns the origin var result = self.location.origin; // Returns:'https://developer.mozilla.org:443'
Specification | Status | Comment |
---|---|---|
URL The definition of 'URLUtilsReadOnly.origin' in that specification. | Living Standard | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | No | No | 29 | No | No | No |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | No | No | No | 29 | No | No | No |
URLUtilsReadOnly
interface it belongs to.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/URLUtilsReadOnly/origin