View Single Post
Old 10-06-2004, 09:49 AM   #2 (permalink)
sargorn
Upright
 
Location: .au
Honestly, I'd simply add a link/button on each page allowing the user to click out to the page with the frames.

But, if you want the really annoying behaviour of reloading the page;

change the body tags;
<body onLoad="checkFrames();'">

and some javascript;
function checkFrames(){
if(top==self){
self.location.href = 'http://.../whatever.html';
}
}

hth. and works.
sargorn is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34