Open In App
Related Articles

HTML DOM History back() Method

Improve Article
Improve
Save Article
Save
Like Article
Like

The History back() method in HTML is used to load the previous URL in the history list. It has the same practical application as the back button in our web browsers. This method will not work if the previous page does not exist. This method does not contain any parameter.
Syntax: 

history.back

Below program illustrates the History back() method in HTML: 
Example: 

html




<!DOCTYPE html>
<html>
    <head
        <title>DOM History.back() Method</title
        <style
            h1 { 
                color:green; 
            
            h2 {
                font-family: Impact;
            }
            body { 
                text-align:center; 
            
        </style
    </head>
    <body>
        <h1>GeeksforGeeks</h1
        <h2>DOM History.back() Method</h2
        <p>For going to the previous URL in the history, 
        double-click the "Go back" button: </p>
        <button ondblclick="history_back()">Go back</button>
        <script>
            function history_back() {
                window.history.back(); 
            }
        </script>
    </body>
</html>                    


Note: Here this button will not work because there is no previous url, you can try to copy the ide url and open any site paste the ide and copy paste the code and run it. 
Output: 
 

After click on the button: 
 

Supported Browsers: The browser supported by History back() method are listed below: 

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 10
  • Firefox 1
  • Opera 12.1
  • Safari 1

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
Related Tutorials