View Full Version : keep in frames


podge_r
07-23-2003, 07:08 PM
Hello, imagine there is a top and bottom frame. i have links in the top from that go to my bottom frame. one of my links is to pogo.com but the thing is there script hides the top frame so it takes up the whole page, if there was a script to keep it in the bottom frame that be great THANKS!

MaGiCSuN
07-23-2003, 07:12 PM
it you target the links to the bottom frame name then it should stay there. May i ask how you targetted it?

Love,
Mirna

podge_r
07-23-2003, 07:17 PM
<a href="http://www.pogo.com/" target="main">pogo.com</a>

pb&j
07-23-2003, 08:18 PM
pogo.com (as well as many other sites) have inserted a special javascript coding that looks like this...
<script language="JavaScript">
if (window != top) top.location.href = location.href;
</script>
what that does is, it checks the current webpage address and if it does not match the current site, it reloads fully into the current window (like you described).

there is no way to fix this to your plan. sites do this on purpose so they do not get trapped into another persons frames.