Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | Location assign( ) Method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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

My Personal Notes arrow_drop_up
Last Updated : 05 Jul, 2022
Like Article
Save Article
Similar Reads
Related Tutorials