Back History / Forward History Navigation Button - Add a Back History / Forward History Navigation Button.
Compatible Browsers:
Chrome BrowserFirefox BrowserInternet Explorer BrowserOpera BrowserSafari Browser
<html> <head> <title>Back History / Forward History Navigation Button Code Snippet</title> <script> <!-- Begin Back History / Forward History Navigation Found In The http://snapbuilder.com Free Public Codes Library function varitext(text){ text=document print(text) } // End --> </script> </head> <body> <p>This script is best used in frames where one frame is the 'menu' - It makes your users feel more secure when they know they can go back.</p> <center> <form> <input type="button" value=" BACK " onClick="history.go(-1);"> <input type="button" value="FORWARD" onCLick="history.go(1);"> </form> </center> </body> </html>