Is there an alternative to history.go(-1) for FireFox and Safari. Any Help would be greatly appreciated.
+1
A:
<a href="javascript:history.go(-1)">Link</a>
Should work though.
Because, indeed, the following does not work in Firefox:
<a href="#" onclick="Javascript:goback();">some Text</a>
function goback() {
history.go(-1);
}
Is that what you were doing ?
VonC
2008-11-22 12:58:30
Is that also true if the goBack() function would return false?
Pim Jager
2008-11-22 17:55:13