Open In App
Related Articles

HTML DOM Location assign( ) Method

Improve Article
Improve
Save Article
Save
Like Article
Like

The Location assign() method is used for loading a new document. It can also be used for loading a new document but the difference between these two methods is that the replace() method removes the URL of the current document from the document history and therefore it is not possible to navigate back to the original document using the “back” button. 

Syntax:

location.assign(URL)

Parameters Used:

  1. URL: It is a mandatory parameter which specifies the URL of the page to navigate to.

Below program illustrates the Location assign() Method : 

Loading a new document. 

html




<!DOCTYPE html>
<html>
  
<head>
    <title>Location assign() Method in HTML</title>
    <style>
        h1 {
            color: green;
        }
          
        h2 {
            font-family: Impact;
        }
          
        body {
            text-align: center;
        }
    </style>
</head>
  
<body>
  
    <h1>GeeksforGeeks</h1>
    <h2>Location assign() Method</h2>
  
    <p>For loading a new document, 
      double click the "Load Document" button: </p>
  
    <button ondblclick="load()">Load Document</button>
  
    <script>
        function load() {
            location.assign("https://www.geeksforgeeks.org");
        }
    </script>
  
</body>
  
</html>
                      


Output:

  

After clicking the button

  

Note: Above program would not work for all links as cross framing is not allowed in many cases, try it by assigning link “https://ide.geeksforgeeks.org/”. 

Supported Web Browsers

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

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks 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!

Last Updated : 14 Jun, 2023
Like Article
Save Article
Similar Reads
Complete Tutorials