Calling Function In anther Iframe

Hi All,

I have an accordian set up comprising of five seperate accordians each contains an iframe of a seperate page each containing their own functions.

How do I call a function in one iframe from another iframe.

When not using these components i would go the parent.function route and then work down to the frame from there.

Thanks in advance for any help.

If you are using real frames (view:“iframe”) you can use the similar approach

for example if you have

{ view:“frame”, id:“frame1”, src:“pageA.html”},
{ view:“frame”, id:“frame2”, src:“pageB.html”}

from pageA.html you can use

parent.$$('frame2').getWindow().call_some_method();