views:

22

answers:

1

Hi,

I have a page that is already in an iframe that has another page with an iframe within it called "framedets", which allows the user to perform some processing within this iframe.

Within this lowest iframe though, when the user presses a "process" button, I want to reload the lowest iframe's parent only and not the top most iframe.

I tried window.top.location.reload(true); but it went right to the topmost iframe.

Any help would be great.

Thanks.

+2  A: 

It's window.parent not window.top

David Dorward
thanks david. I ended up using just parent.location.reload(true). appreciate you replying back.
tonsils