Click to See Complete Forum and Search --> : history.back()/Xbrowser issue


eugenet
03-02-2003, 03:08 PM
Hi again,
I have a framed site: "logo" and "main" frames.
The problem at hand is that back link doesn't work in N6+ (all is fine with N4 and IE5+).
This link should take the user to the previous page in the same "main" frame.
I tried to script it differently but none is working:

<a href="javascript:history.go(-1);" target="_self">back</a>
<a href="javascript:void history.go(-1);" target="_self">back</a>
<a href="javascript:history.back();" target="_self">back</a>
<a href="javascript:void history.back();" target="_self">back</a>
<a href="javascript:top.main.history.back();" target="_self">back</a>
<a href="javascript:void top.main.history.back();" target="_self">back</a>
<a href="javascript:top.frames[1].history.back();" target="_self">back</a>
<a href="javascript:void top.frames[1].history.back();" target="_self">back</a>

Of course, all of the above works in the non-framed site.
Appreciate any ideas, thanks for your time, Eugene.

eugenet
03-02-2003, 06:23 PM
Dave, do you know how to make it work in N6?
Eugene.

eugenet
03-02-2003, 06:52 PM
Thank you for your time, Dave.