how to sync window.top.location and window.location?
This is how you set the parent of the frame (top
) to the location of the frame document...
top.location = self.location;
Of course, this code must be executed within the iframe, and is succeptible to the Same-Origin Policy.