how to make "back" hyperlink

H

Huck Rorick

Is there a way to make a hyperlink perform the same function as the "back"
button in Internet Explorer (i.e. go back to whatever page the user was
previously on)?

Thanks for any help,

Huck
 
D

David Berry

You can create a hyperlink to an image or text using the following code:

<a href="Javascript:history.go(-1)">Back</a>

Note: (-1) means go back one page. So, for example (-2) would be go back
two pages.
 
Top