Hi,
How do I code:
1- Go Back (like the browser's back button)
2- Go forward (like the browser's forward button)
Thanks
Moderators: macek, egami, gesf

<!-- Going back -->
<a href="javascript:history.go(-1)">Back</a>
<!-- Or -->
<a href="javascript:history.back()">Back</a>
<!-- Going forward -->
<a href="javascript:history.go(+1)">Forward</a>
<!-- Or -->
<a href="javascript:history.forward()">Forward</a>

Users browsing this forum: No registered users and 1 guest