I saw the code for "Frame Busting" on a resource site a couple days ago and now I can't remember witch one. Can some post the code for me?
Frame Busting
Collapse
X
-
Here you go
<SCRIPT LANGUAGE=JAVASCRIPT>
<!--
if (top.frames.length!=0) top.location=self.document.location;
// -->
</SCRIPT> -
The placement doesn't affect the functioning of the code, only when it's executed... But place it in the page head, so you'll burst out of any frame asap.
You can try this line of code instead, which I just made up and actually tested:
if (top != self) top.location = self.document.location;Comment
-

Comment