Previous Next



Write a javascript code to get a history list.


<html>            
  <head>
    <script>
    
    function previous()
    {
        window.history.back();
    }

    function next()
    {
        window.history.forward();
    }

    </script>
  </head>
<body>
    
    <input type="button" value="Previous" onclick="previous();"/>
    <input type="button" value="Next" onclick="next();"/>

  </body>
</html>

Output: