Click to See Complete Forum and Search --> : Break Framez


The Anime King
01-19-2004, 01:58 PM
Does anyone know the code to break out of a frame?
So if the page is loaded within a frame or iframe it changes the whole window into that page?

Greetzzz tAK

Askalon
01-19-2004, 02:05 PM
I just usually right click the link and chose "open in new window"

iniquity101
01-19-2004, 02:22 PM
do you mean a link that would "break it out of a frame" it in its own window, or after a certain time or something?

iniquity101
01-19-2004, 02:42 PM
This might help...

Automatic breakout: (put in <head> section)
<script language="JavaScript"
if(parent.frames.length>=1 {
window.top.location.href="index.html".
}
// --></script>


linking:
<a href="yourframename.html" target=_top> breakaway!!!</a>

fredmv
01-19-2004, 03:32 PM
<script type="text/javascript">
//<![CDATA[
if(top != self) top.location = self.location;
//]]>
</script>