Open In App

HTML | DOM Location replace() Method

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

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:

  • newUrl: This is the URL to replace the current page with. This is a required parameter.

Note: The URL to be replaced must allow framing. 

Return Value: No return value. 

Example: 

html




<!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:

 before-click 

After pressing the button:

 after-click 

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

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 5.5
  • Firefox 1
  • Opera 3
  • Safari 1

Last Updated : 05 Jul, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads