Open In App

How to set location and location.href using JavaScript ?

Improve
Improve
Like Article
Like
Save
Share
Report

In this article, we will set the location and location.href using Javascript.

Both location and location.href are used to set or return the complete URL of your current page. They return a string that contains the entire URL with the protocol.

Syntax:

location = "https://www.geeksforgeeks.org";

or

location.href = "https://www.geeksforgeeks.org";

Both are used to set the URL. Both are described as running JavaScript 1.0 in the backend in Netscape 2.0 and have been running in all browsers ever since. However, you have the liberty to prefer any one of the two according to your convenience but it is preferred to use location.href because the location might not support older versions of Internet Explorer. 

Commands like location.split(“#); cannot be used as the location is an object but location.href can be used as it is a string. 

Example: The following code demonstrates the DOM Location href property.

HTML




<style>
    h1 { 
        color: green; 
    
       
    h2 { 
        font-family: Impact; 
    
       
    body { 
        text-align: center; 
    
</style>
  
<body>
    <h1>GeeksforGeeks</h1>
    <h2>Setting location and location.href</h2>
  
    <p>
        Click on the button to go
        to designated URL
    </p>
  
    <button ondblclick="myhref()">
        Destination URL
    </button>
  
    <p id="href"></p>
  
    <script>
        function myhref() { 
           location.href =
           "https://www.geeksforgeeks.org"; 
        }
    </script>
</body>


Output:

 



Last Updated : 13 Jan, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads