• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

No Iframe!!

uzzer

New Member
If a website redirected to my website with an IFrame, what is the script that automatically removes the IFrame?
 
Put in the head:
HTML:
<SCRIPT LANGUAGE="JavaScript">
<!--
if (top.frames.length != 0) {
ver = parseInt(navigator.appVersion, 10);
if ( ((navigator.appName == "Netscape") && (ver >= 3)) ||
((navigator.appName == "Microsoft Internet Explorer") && (ver >= 4)) )
location.replace("http://www.yoururl.com");
else
location = "http://www.yoururl.com";
};
//-->
</SCRIPT>

Should do it, havn't tested that though.
 
Back
Top