Open In App

HTML | DOM Location replace() Method

The DOM Location replace() Method in HTML is used to replace the current document with the specified one. This method is different from the assign() method as this removes the current document from the document history, therefore it is not possible to go back to the previous document using the ‘back’ button. 

Syntax:



location.replace( newUrl );

Parameters:

Note: The URL to be replaced must allow framing. 



Return Value: No return value. 

Example: 




<!DOCTYPE html>
<html lang="en">
 
<head>
    <title>DOM Location replace() Method</title>
</head>
 
<body>
    <h1 style="color: green">GeeksforGeeks</h1>
    <b>DOM Location replace() Method</b>
 
    <p>Click the button to replace
      the current document with a new one.</p>
 
    <button onclick="changePage()">
      Change Page
    </button>
 
    <script>
        function changePage() {
 
            // change the document to
            // the GeeksforGeeks homepage
            location.replace(
              "https://ide.geeksforgeeks.org");
        }
    </script>
</body>
 
</html>

Note: Run the above code on ide.geeksforgeeks.org as the link used in the code is ide.geeksforgeeks.org to allow framing. 

Output: 

Before pressing the button:

  

After pressing the button:

  

Supported Browsers: The browser supported by DOM Location replace() Method are listed below:

Article Tags :