Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q474 How do I script back and forward history buttons in a remote control new window that effect the main window?

You are here: irt.org | FAQ | JavaScript | History | Q474 [ previous next ]

Try:

<form>
<input type="button" value="back" onClick="opener.history.go(-1)">
<input type="button" value="forward" onClick="opener.history.go(1)">
</form>

Feedback on 'Q474 How do I script back and forward history buttons in a remote control new window that effect the main window?'

©2018 Martin Webb