Blocker Script

Posted in: Newspaper
Post count: 43

Hi guys,

I’m having a big problem with blood suckers. To prevent copies of texts from my website, i’m thinking in install the following script:

<script language=’JavaScript’>
function bloquear(e){return false}
function desbloquear(){return true}
document.onselectstart=new Function ("return false")
if (window.sidebar){document.onmousedown=bloquear
document.onclick=desbloquear}
</script>

(If you know another script blocker more simple than that, please let me know).

The forum where I found the plugin asks for the code to be inserted before </head>. Do I need to paste it in all php files or only in style.css?

Post count: 3343

Hi,
Paste this code:

    <script language="JavaScript">
        function bloquear(e){return false}
        function desbloquear(){return true}
        document.onselectstart=new Function ("return false")
        if (window.sidebar){document.onmousedown=bloquear
            document.onclick=desbloquear}
    </script>

like here: http://screencast.com/t/yuAwD8MD4iy

Thanks!

Post count: 43

Thanks again, Marius!

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.