What is the difference between window, window.top and window.parent?
Solution 1:
If you are within a frame:
-
window
refers to the current frame. -
parent
refers to the parent of the current frame. -
top
refers to the outermost frame.
If you're not within any frame, these will all just be a reference to the current window. If you're only within one level of frame, parent
and top
will both be a reference to the same thing.