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

Q1659 How can I scroll another frame?

You are here: irt.org | FAQ | JavaScript | Scroll | Q1659 [ previous next ]

Try:

<script language="JavaScript"><!--
top.otherFrameName.scroll(0,999);

//or

top.otherFrameName.scrollBy(0,10);
//--></script>

©2018 Martin Webb