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 t
Using JavaScript within the iframe, reference the parent and call the scroll() method.
window.parent.scroll(0,0);
(Note. This will not work if the iframe Url is a different domain than the parent.)