This is an experimental technologyCheck 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.
Syntax
string = object.origin;
Examples
// On this page, returns the origin
var result = self.location.origin; // Returns:'https://developer.mozilla.org:443'
Specifications
| Specification | Status | Comment |
| URLThe definition of 'URLUtilsReadOnly.origin' in that specification. | Living Standard | Initial definition. |
Browser compatibility
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
Chrome
No support No |
Edge
No support No |
Firefox
Full support 29 |
IE
No support No |
Opera
No support No |
Safari
No support No |
WebView Android
No support No |
Chrome Android
No support No |
Firefox Android
Full support 29 |
Opera Android
No support No |
Safari iOS
No support No |
Samsung Internet Android
No support No |
Legend
- Full support
- Full support
- No support
- No support
- Experimental. Expect behavior to change in the future.'
- Experimental. Expect behavior to change in the future.
See also
- The
URLUtilsReadOnlyinterface it belongs to.
URLUtilsReadOnly.origin by Mozilla Contributors is licensed under CC-BY-SA 2.5.