Possible Duplicate:
Iframe Function Calling From Iframe to parent page javascript function
I have a parent page running scrollTo.js. There are four panels to scroll to with each panel having content in the form of an iframe. Each iframes content is generated by a link in the previous iframe. Problem: how do I call the parent function from the iframe?
Parent:
<a href="#item2" class="panel" onclick="ipage.location='jam2.html'">home made jam</a> |
<a href="#item2" class="panel" onclick="ipage.location='away.html'">international
flavour</a>
iframe:
<a href="" onclick="parent.ipage2.location='local.html'">local produce</a> | <a href=""
onclick="parent.ipage2.location='specials.html'">specials</a> | <a href=""
onclick="parent.ipage2.location='international.html'">world ingredients</a>