
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the role of the window.history object in JavaScript?
The window.history object is used to go back or to the next page of the web browser. It has the browser's history and comes with the following two methods −
- history.back − Go to previous URL
- history.next − Go to next URL
Example
You can try to run the following code to learn how to work with window.history object in JavaScript −
<!DOCTYPE html> <html> <body> <script> function backPage() { window.history.back() } function nextPage() { window.history.next() } </script> <input type="button" value="Previous URL" onclick="backPage()"> <input type="button" value="Next URL" onclick="nextPage()"> </body> </html>
- Related Questions & Answers
- What is the role of Navigator object in JavaScript?
- What is the role of Browser Object Model (BOM) in JavaScript?
- What is the role of clearTimeout() function in JavaScript?
- What is the role of throw statement in JavaScript?
- What is the role of filter() method in JavaScript?
- What is the role of pageXOffset property in JavaScript?
- What is the role of scrollY property in JavaScript?
- What is the role of scrollX property in JavaScript?
- What is the role of parseFloat() method in JavaScript?
- What is the role of parseInt() method in JavaScript?
- What is the role of brackets ([ ]) in JavaScript Regular Expressions?
- What is the role of exec method in JavaScript RegExp?
- What is the role of global RegExp property in JavaScript?
- What is the role of source RegExp property in JavaScript?
- What is the role of lastIndex RegExp property in JavaScript?
Advertisements