Untitled
unknown
plain_text
2 years ago
578 B
10
Indexable
<!DOCTYPE html>
<html>
<head>
<title>History API Demo</title>
</head>
<body>
<h1>History API Demo</h1>
<button id="backButton">Back</button>
<button id="forwardButton">Forward</button>
<script>
// Add event listeners to the back and forward buttons
document.getElementById("backButton").addEventListener("click", function() {
window.history.back(); // Go back one page
});
document.getElementById("forwardButton").addEventListener("click", function() {
window.history.forward(); // Go forward one page
});
</script>
</body>
</html>
Editor is loading...