Saturday, August 30, 2025
HomeLanguagesJavascriptHTML DOM Window.location Property

HTML DOM Window.location Property

HTML DOM Window.location property returns a Location object that contains information about the current location of the document. Window.location is read-only property.

Syntax:

var loc = window.location;

Return Value: An object containing information about the location of the document.

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

HTML




<h1 style="color:green;">
    neveropen
</h1>
  
<p>
    HTML window location property
</p>
  
  
<button onclick="Geeks()">
    Click Here
</button>
  
<p id="a"></p>
  
<script>
    var a = document.getElementById("a");
    function Geeks() {
        a.innerHTML = window.location;
        console.log(window.location);
    }
</script>


Output:

HTML DOM Window.location Property

HTML DOM Window.location Property

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

1 COMMENT

Most Popular

Dominic
32249 POSTS0 COMMENTS
Milvus
80 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
7012 POSTS0 COMMENTS
Thapelo Manthata
6689 POSTS0 COMMENTS
Umr Jansen
6701 POSTS0 COMMENTS