Go Back to previous Page using number : History « Window Browser « JavaScript DHTML
- JavaScript DHTML
- Window Browser
- History
Go Back to previous Page using number
<html>
<head>
<title>Go Back to previous Page</title>
<script language="javascript">
<!--
function PreviousPage() {
history.back(1);
}
//-->
</script>
</head>
<body bgcolor="#ffffff" text="#000000">
<a href="javascript:PreviousPage()">Back</a><br>
</body>
</html>
Related examples in the same category