|
|
Preventing web pages from load in framesOnce your site is well known, other developers might place links to it loading your pages in the same window or another browser window. This is fine since your site is presented the way you wanted it to be. What if developers load your pages in a frame along with their interface? This almost amounts to stealing data! The problem is aggravated by the fact that you don't know who is doing it or where your pages are ultimately displayed. Here is a simple JavaScript code protects your pages from being stolen.
<SCRIPT LANGUAGE="JAVASCRIPT" TYPE="TEXT/JAVASCRIPT">
<!--
if (self != top)
{
top.location.href = self.location;href;
}
//-->
</SCRIPT>
The code tests whether the top page is the same as the page being displayed. If this is not the case, the URL of the top page is changed to the URL of the present page. Thus, your page always loads in a full browser window the way you wanted it.
Page contents: Preventing web pages from your web site to load in a framed document of an external site by attaching a little JavaScript code to these pages.
Page URL: http://www.webdevelopersnotes.com/tips/html/ preventing_web_pages_to_load_in_frames.php3
|
|