Forum Moderators: open
Perhaps the problem was when you would exit the "child" of a FRAMES page and go to another page. Then the link back needed target='_top' to keep you from going back directly to the child. target='_top' took you to the parent which would be correct.
If that's right, I'm not using them properly now because I have them in links leaving FRAMES pages and going to non-FRAMES pages.
Thanks! Peter
...took you to the parent which would be correct
That's what target="_parent" does ;)
Target:
_blank = Link will open in new window
_top = Link will clear any existing frames and open URL as the uppermost document
_parent = Link will open in parent frame (if several levels deep). Equal to _top if only one level frameset
_self = Link will open in current frame/window etc, whichever is applicable