how to make "back" hyperlink

  • Thread starter Thread starter Huck Rorick
  • Start date Start date
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
 
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.
 
Back
Top