Red Eye Media
Call today
Follow us on Twitter
Back to home page Red Eye Media Portfolio Red Eye Media Services About Red Eye Media articles Contact Red Eye Media
My account

javascript frame busting

<< back to articles Bookmark and Share

Javascript can be used to stop people loading your site in their frameset.
Simply put this code in between the <head></head> tags of your site and they will be re-directed.


Javascript Frame Busting
<script language="JavaScript" type="text/javascript">
if (self.parent.frames.length != 0)
self.parent.location="/";
</script>
script