|
Copied To Clipboard!
<html>
<head>
<title>Back / Forward History Button Navigation</title>
</head>
<body>
<!-- Begin Back/Forward Buttons Script by http://snapbuilder.com-->
<script>
<!-- hide this script contents from old browsers
function goHist(a)
{
history.go(a); // Go back one.
}
// <!-- done hiding from old browsers -->
</script>
<form method="post">
<input type="button" value="<< BACK" onClick="goHist(-1)">
<input type="button" value="FORWARD >>" onClick="goHist(1)">
</form>
<!-- End of Back/Forward Buttons Script -->
<br />
[ YOUR CONTENT GOES HERE ]
</body>
</html>
|