Location: origin property
        
        
          
                Baseline
                
                  Widely available
                
                
              
        
        
        
          
                
              
                
              
                
              
        
        
      
      This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
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 URLs using the 
ftp:,http:,https:,ws:, andwss:schemes, theprotocolfollowed by//, followed by thehost. Same ashost, theportis only included if it's not the default for the protocol. - For URLs using 
file:scheme, the value is browser dependent. - For URLs using the 
blob:scheme, the origin of the URL followingblob:, but only if that URL uses thehttp:,https:, orfile:scheme. For example,blob:https://mozilla.orgwill havehttps://mozilla.org. 
For all other cases, the string "null" is returned.
See URL.origin for more information.
Value
A string.
Examples
js
console.log(window.location.origin); // On this page returns 'https://developer.mozilla.org'
Specifications
| Specification | 
|---|
| HTML> # dom-location-origin-dev>  | 
            
Browser compatibility
Loading…
See also
Window.origin- origin glossary term