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
With animation
window.parent.scroll({ top: 0, left: 0, behavior: 'smooth' });