Javascript examples for Browser Object Model:History
The forward() method loads the next URL in the history.
None
No return value
The following code shows how to go forward one page.
<!DOCTYPE html> <html> <body> <button onclick="goForward()">Go Forward</button> <script> function goForward() {// w ww . j a va2 s . com window.history.forward(); } </script> </body> </html>