devxlogo

Using the History Object to Go to Specific Pages

Question:

I am using history objects back(1) ( history.back(1) )method in my HTML application to go to previous screen and it is working alright but I am not able to go back to a second previous screen . I have tried history.back(2), history.back(3), and so forth but it is not working.

Answer:

The back method only sends the person to the previous URL (just like the Back button on the browser toolbar). If you want to go to specific pages in the history list, then you’ll want to use the “go” method, and specify a negative number to go back, a positive to go forward:

history.go(-1); // back one pagehistory.go(-3); // back three pages

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Seven Service Boundary Mistakes That Create Technical Debt

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.