Saturday, August 30, 2025
HomeLanguagesJavascriptHTML DOM Window origin Property

HTML DOM Window origin Property

The window origin property returns the origin of the global scope, serialized as a string of the window.

Syntax:

var origin = self.origin;

Return Value: A string containing the origin.

Example: This example shows how to get the origin of the document using this property.

HTML




<!DOCTYPE HTML>
<html>
  
<body style="text-align:center;">
    <h1 style="color:green;">
        neveropen
    </h1>
  
    <p>
        HTML | origin property
    </p>
      
    <button onclick="Geeks()">
        Click Here
    </button>
      
    <p id="a"></p>
  
    <script>
        var a = document.getElementById("a");
        function Geeks() {
            a.innerHTML = "document origin is : "
                    + self.origin;
        
    </script>
</body>
  
</html>


Output:

Before Clicking the Button:

After Clicking the Button: 

Note: If the origin is not a scheme/host/port tuple (say you are trying to run it locally, i.e. via file:// URL), the origin property will return the string “null”.

Supported Browsers:

  • Google Chrome
  • Edge
  • Firefox
  • Safari
  • Opera
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32249 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6617 POSTS0 COMMENTS
Nicole Veronica
11792 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11838 POSTS0 COMMENTS
Shaida Kate Naidoo
6731 POSTS0 COMMENTS
Ted Musemwa
7013 POSTS0 COMMENTS
Thapelo Manthata
6689 POSTS0 COMMENTS
Umr Jansen
6701 POSTS0 COMMENTS