Untitled
unknown
plain_text
2 years ago
524 B
10
Indexable
<!DOCTYPE html>
<html>
<head>
<title>Handling the Backward & Forward Buttons</title>
</head>
<body>
<div>
<h1>AMITY UNIVERSITY RANCHI</h1>
<h3>Forward and Back Button in html-2</h3>
<button onclick="next()"
id="forward">Forward
</button>
<button onClick="previous()"
id="backward">Back
</button>
</div>
<script>
function next() {
window.history.forward();
}
function previous() {
window.history.back();
}
</script>
</body>
</html>Editor is loading...