Skip to main content

Have you ever visited a page, pressed a link and found that the new page from a different site is stuck in the other guy's frame? If the new page is a frames page, then this is fun with more and more frames filling up your screen. To avoid annoying the user with this, you can make your pages burst out of frames.

if (top != self) {
  top.location=self.location;
}