-Edward-
11-20-2000, 07:44 AM
Whats the javascript command for going back and forth using a text link?. This is to go in a php document.
![]() | View Full Version : Javascript -Edward- 11-20-2000, 07:44 AM Whats the javascript command for going back and forth using a text link?. This is to go in a php document. BC 11-20-2000, 07:49 AM <a href="javascript:history.go(-1)">Back</a> <a href="javascript:history.go(2)">Forward two pages</a> etLux 11-20-2000, 05:20 PM Or, also... <a href="javascript:history.back()">Back</a> <a href="javascript:history.forward()">Forward</a> |