This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for the proper prefixes to use in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the spec changes.
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. |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | ? | 29 (29) | ? | ? | ? |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | ? | ? | 29.0 (29) | ? | ? | ? |
URLUtilsReadOnly
interface it belongs to.
© 2005–2017 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