sending someone back

E

ems

Hi

Would anyone be kind enough to tell me or point me in the right
direction as to the script code for sending someone back to where they
last were.

Like with the 'Top of Page' its '#top'

cheers me dears
 
P

p c

<SCRIPT LANGUAGE="JavaScript"><!--
function back() {
history.go(-1);
}
//--></SCRIPT>

<A HREF="javascript:back()">Back</A>

OR

<A HREF="default.htm" onClick="history.go(-1)">Back</A>

...PC
 
Top