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=http://www.webdeveloper.com/forum/archive/index.php/"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.
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=http://www.webdeveloper.com/forum/archive/index.php/"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.