PDA

View Full Version : No Frame Hack


A_BooK
04-13-2005, 06:42 PM
I Wondering That I Have An Old Hack When I Was Using vb2+ Forum Called No Frame And That Hack Was Removing Any Frame When My Forum Was Redirect From Any Sit Have His Own Frame Around Mine ...Did There Any same Thing Fore vb3+ ??

:surprised:

jugo
04-13-2005, 06:47 PM
You can just add this to your "head_include" template


<script language="JavaScript" type="text/javascript">
<!--
function breakout_of_frame()
{
// see http://www.thesitewizard.com/archive/framebreak.shtml
// for an explanation of this script and how to use it on your
// own website
if (top.location != location) {
top.location.href = document.location.href ;
}
}
-->
</script>



and add this to your <body> tag


onload="breakout_of_frame()"

A_BooK
04-14-2005, 07:22 PM
Thanks A Lot......... :nervous: