|
Courtesy of Web-Source.net
Back and Forward History Buttons
If you would like to enable your visitors to click a button to navigate their history, place the following codes within the HTML of your web page where you would like the buttons to appear.
|
<FORM>
<INPUT type="button" value="Back" onclick="history.back();">
</FORM> |
|
<FORM>
<INPUT type="button" value="Forward" onclick="history.forward();">
</FORM>
|
Change the text indicated in red to whatever you'd like.
Content Provided By:
 |
|