Using the History Object to Navigate : Browser Event « Window Browser « JavaScript DHTML
- JavaScript DHTML
- Window Browser
- Browser Event
Using the History Object to Navigate
<html>
<head>
<title>Using the History object</title>
</head>
<body>
<center>
<h1>Navigating with the History object</h1>
<form>
<input type="button" value="Back" onClick="window.history.back()">
<input type="button" value="Forward" onClick="window.history.forward()">
</form>
</center>
</body>
</html>
Related examples in the same category