views:

45

answers:

1

If I have a page with an iframe on it, then there is another iframe in that iframe, do I have to use parent.parent to reach the top frame or is there a shortcut to the page "root" that would be equivalent to parent.parent; or parent.parent.parent for that matter.. you get the point.

+3  A: 

There is.

window.top
Chetan Sastry