Deb
07-06-1998, 02:09 PM
It's always important to offer a link to get out of someone else's frames for the older browsers... but here is a way to assure anyone with a fairly updated browser is automatically removed from another's frame right when they load your page w/o the viewer having to do anything....
Just add this source code to your html file right between the <HEAD> and </Head> tags http://www.susogi.net/forums/wink.gif
<SCRIPT LANGUAGE="JavaScript">
<!--
setTimeout ("changePage()", 3000);
function changePage() {
if (self.parent.frames.length != 0)
self.parent.location="http://www.susogi.net";
}
// -->
</SCRIPT>
That's all there is to it
Deb
Just add this source code to your html file right between the <HEAD> and </Head> tags http://www.susogi.net/forums/wink.gif
<SCRIPT LANGUAGE="JavaScript">
<!--
setTimeout ("changePage()", 3000);
function changePage() {
if (self.parent.frames.length != 0)
self.parent.location="http://www.susogi.net";
}
// -->
</SCRIPT>
That's all there is to it
Deb