history.forward()
We can use history.forward() method to go one step forward. history.forward() mimics the browser Forward button.
<!DOCTYPE HTML>
<html>
<head>
<title>Example</title>
</head>
<body>
<script type="text/javascript">
//go forward one page
window.history.forward();
</script>
</body>
</html>