Scroll to top of page with iframe

I'm working on a design where the main pages will each have one iframe as content and nothing else. This is so that I can share one set of iframes across two web sites and change colors and internal links when the ifames are loaded. I want to have "top of page" links within each iframe to go to the top of the window. I tried using href="javascript:window.scrollTo(0,0);" but it does not work. I think I need to scroll the parent window instead. How can I do this?
 
Last edited:
Problem Solved

The correct syntax for scrolling the page to the top of the parent window is
href="javascript:window.parent.scrollTo(0,0)"
 
Top