Wednesday, July 3, 2024
HomeLanguagesJavascriptHow to navigate between web pages using javascript history API ?

How to navigate between web pages using javascript history API ?

In this article, we’ll look at how to use history API to navigate between pages. We use History API to navigate programmatically between web pages. 

History API provides us with a way to access the browser’s session history. It exposes useful methods and properties that let you navigate back and forth through the user’s history, and manipulate the contents of the history stack.

Methods in History API:

1.  window.history.back: This is the same as clicking the back button of the browser.

Syntax:

window.history.back()

2. window.history.forward: This is the same as clicking the forward button.

Syntax:

window.history.forward()

3. window.history.go: This can be used to jump to another page specified as a number. The current page is represented by the number 0. So, the negative number is any page before and the positive number is the page after.

Syntax:

window.history.go(number)

Example 1: Now, let’s implement the above-given methods to navigate between pages. We have two HTML files here and we are able to move between these files using back-and-forward methods.

  • Create two files with name base.html and app.html and paste the below codes
  • Click on the link first
  • Click on the buttons to navigate

base.html

HTML




<!DOCTYPE html>
<html>
  
<head>
    <title>NAVIGATION</title>
</head>
  
<body>
    <h1 style="color:green">
        From GEEKS FOR GEEKS to HELLO WORLD
    </h1>
    <a href="file:///E:/codes/app.htm">link 1</a>
    <button onclick="window.history.forward()">
        FORWORD
      </button>
</body>
  
</html>


app.html

HTML




<!DOCTYPE html>
<html>
  
<head>
    <title>NAVIGATION</title>
</head>
  
<body>
    <h1 style="padding:10px;color:blue">
        From HELLO WORLD to GEEKS FOR GEEKS
    </h1>
    <button onclick="window.history.back()">
      BACK</button>
</body>
  
</html>


Output:

 

Example 2:  Let’s implement go() method with the same example above:

  • Create two files with name base.html and app.html and paste the below codes
  • Click on the link first
  • Click on the go button to navigate back

base.html

HTML




<html>
<head>
    <title>NAVIGATION</title>
</head>
<body>
    <h1 style="color:green">
        From GEEKS FOR GEEKS to HELLO WORLD
    </h1>
    <a href="file:///E:/codes/app.htm">link 1</a>
</body>
</html>


app.html

HTML




<!DOCTYPE html>
<html>
<head>
    <title>NAVIGATION</title>
</head>
<body>
    <h1 style="padding:10px;color:blue">
        From HELLO WORLD to GEEKS FOR GEEKS
    </h1>
    <button onclick="window.history.go(-1)">GO(-1)</button>
</body>
</html>


Output:

 

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

Nango Kalahttps://www.kala.co.za
Experienced Support Engineer with a demonstrated history of working in the information technology and services industry. Skilled in Microsoft Excel, Customer Service, Microsoft Word, Technical Support, and Microsoft Office. Strong information technology professional with a Microsoft Certificate Solutions Expert (Privet Cloud) focused in Information Technology from Broadband Collage Of Technology.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments