Go Back to previous Page : History « Window Browser « JavaScript DHTML
- JavaScript DHTML
- Window Browser
- History
Go Back to previous Page
<html>
<head>
<title>Go Back to previous Page</title>
<script language="javascript">
<!--
function NextPage() {
history.forward(1);
}
//-->
</script>
</head>
<body>
<a href="javascript:NextPage()">Forward</a><br>
</body>
</html>
Related examples in the same category