View Full Version : Iframes and back buttons


Elentari
05-02-2003, 11:59 PM
Does anyone know how to do the following:

I want to add a back button on index page so that it goes back on the last page you looked at in the iframe and loads it there. Get what I mean?

MaGiCSuN
05-03-2003, 11:25 AM
<a href="history:-1()" target="inlineframe">linkname here</a>

try something like that. Not sureif it's the right code, search the forum for it..

MaGiCSuN
05-03-2003, 02:04 PM
Ok i testing it out and it works! The code i gave above isn't complety good so here it is:

<a href="javascript:history.go(-1)" target="iframe">лл Back</a>
<a href="me.html" target="iframe">Me</a>

<iframe name="iframe" height="200" width="200" src="exit.html" frameborder="0"></iframe>

that's what i used as testing code, first exit.html opened in the iframe then i clicked the link "me" to load the me.html page inside and then i clicked the "back" link and it took me back to exit.html

Love,
Mirna

Elentari
05-03-2003, 02:33 PM
Thanks. Will try it as asap.