The History forward() method in HTML is used to load the next URL in the history list. It has the same practical application as the forward button in web browsers. This method will not work if the next page will not exist in the history list.
Syntax:
history.forward
Example: Below program illustrates the History forward() method in HTML
HTML
<!DOCTYPE html>
< html >
< head >
< title >DOM History.forward() Method</ title >
< style >
h1 {
color: green;
}
</ style >
</ head >
< body >
< h1 >GeeksforGeeks</ h1 >
< h2 >DOM History.forward( ) Method</ h2 >
< p >
For going to the next URL in the history
double-click the "Go next" button:
</ p >
< button ondblclick = "history_forward()" >
Go next
</ button >
< script >
function history_forward() {
window.history.forward();
}
</ script >
</ body >
</ html >
|
Output:
Supported Browsers: The browser supported by the History forward() method are listed below:
- Google Chrome 1
- Edge 12
- Firefox 1
- Edge 12
- 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 :
03 Aug, 2023
Like Article
Save Article