Hello all,
I have seen this before. There is a script that can give a normal hyperlink the function of the Back Button. So to say, a link that takes you to the page you viewd before.
Does anybody have any info on that?
Thanks a lot people!
| SitePoint Sponsor |
Hello all,
I have seen this before. There is a script that can give a normal hyperlink the function of the Back Button. So to say, a link that takes you to the page you viewd before.
Does anybody have any info on that?
Thanks a lot people!





Indeed. It's done by using JavaScript.
Check this thread out : http://www.sitepointforums.com/showt...threadid=10393
<a href="javascript:history.back(1)">Go Back</a>
Hope this helps
Sang N.
Perfect!!
THANKS A LOT ALL!!
s
Yes, with history.back() (vinasite's answer) or...
previous page:
<a href="javascript:history.go(-1)">Back</a>
back 5 pages:
<a href="javascript:history.go(-5)">Back 5</a>
Laura Harris
Bookmarks