Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<button onclick="goBack()">Load the next URL in the history list</button>
<p>Clicking on the button will not result in any action, because there is no next page in the history list.</p>
<script>
function goBack() {
  window.history.go(1);
}
</script>
</body>
</html>