Frame Buster


This is a simple little script to prevent your page from showing up in someone else's frame. No customization is needed for this one. The script can go between the <BODY> and </BODY> tags. Of course, this script is not recommended for framed sites.

<SCRIPT LANGUAGE=JavaScript>
<!--
  if (top.frames.length!=0)
   top.location=self.document.location;
// -->
</SCRIPT>


Grab a text file of this JavaScript (right-click and save it as a text file).