Anti Frame Breakers

Is this a fix for the FRAME BUSTER or no?
is it working?
 
Here is a solution that may work for some people, the following script display a window where the user can select to stay in your site or leave to the iframed page:

<script type="text/javascript">
var framekiller = true;
window.onbeforeunload = function() {
if(framekiller) {
return "place your message here"; // ..
}
};
</script>

Still looking for a better one...
Come on BHW people, please post it!!! :cool:
 
hey a friend of mine runs a site and earns via pictures/photos..
he's been stuck for a few days, it would be quite helpful for him if this tool disables the thumbnail view or so called frames at google images*
 
<script>

window.onbeforeunload = function() {

window.onbeforeunload = null

return "CLICK STAY ON THIS PAGE OF YOU SEE THIS BOX"

}

</script>

<iframe src="" style="height:0px"></iframe>
 
Back
Top