How to Prevent Your Site from Being Framed

If you do not want that someone links your web site within a frame, the following javascript code will enable you to prevent your web site from being framed.

Add the following code to your <body> tag:

[code:js]<body onLoad="if (self != top) top.location = self.location">[/code]