Problem: I'm calling pages from other sites into an iframe in my own page and want a 'back' button so that once user has browsed 2 or more pages, user can go back a page. At moment, all I can offer is to reload orginal page into the iframe.
Thought about using a back button, eg:
<FORM>
<INPUT TYPE="Button" VALUE="Back"
onClick="history.go(-1)">
</FORM>
but, of course, this applies only to my pages, not to the off-site pages being browsed in the iframe. I guess that what's needed is to read the url of the iframe pages and feed that to the back button. Can you pls advice how this might be done?
Thought about using a back button, eg:
<FORM>
<INPUT TYPE="Button" VALUE="Back"
onClick="history.go(-1)">
</FORM>
but, of course, this applies only to my pages, not to the off-site pages being browsed in the iframe. I guess that what's needed is to read the url of the iframe pages and feed that to the back button. Can you pls advice how this might be done?