How do I Scroll parent page to top when child page is click within iframe?

Evan picture Evan · Jun 17, 2010 · Viewed 59.2k times · Source

When someone clicks on a link within an iframe (child page), how do I get the parent page to scroll to the top? The issue is the child page will remain in the same spot of the page, because the iframe has a lot of height larger than the parent page.

Please note: the parent and child pages are on different sub domains.

I created a demo to show this: http://www.apus.edu/_test/iframe/index.htm

Answer

Evan picture Evan · Jun 26, 2010

The trick is to append the following onload="window.parent.parent.scrollTo(0,0)" to the iframe and that should do it!