Loading...
 

Stop Frameset

How do I stop my page from being loaded into somebody elses frame?

Add the following code inbetween the <HEAD> and </HEAD> part of your page.

<script language="JavaScript">
<!--
if (self.location.href != top.location.href) {
top.location.href = self.location.href;
}
// -->
</SCRIPT>