Back and Forward Example


This page allows you to go back or forward to pages in the history list. These should be equivalent to the back and forward arrow buttons in the browser's toolbar.
...

 

  • Source

    <HTML>
    <HEAD><TITLE>Back and Forward Example</TITLE>
    </HEAD>
    <BODY>
    <H1>Back and Forward Example</H1>
    <HR>
    This page allows you to go back or forward to pages in the history list.
    These should be equivalent to the back and forward arrow buttons in the
    browser's toolbar.
    <HR>
    <FORM NAME="form1">
    <INPUT TYPE="button" VALUE="< - BACK" onClick="history.back();">
    ... 
    <INPUT TYPE="button" VALUE="FORWARD - >" onClick="history.forward();">
    <HR>
    </BODY>
    </HTML>