How to prevent IFrame to display your website

No Comments »

If you don’t want your webpage to be displayed inside another website, in an IFrame, use this:

<script type="text/javascript">
<!--
if (top.location.href != self.location.href)
  top.location.href = self.location.href;
//-->
</script>

Post a Comment