Saturday 20 August 2011

How to Disable Right Click

all you have to do is go to Design - Edit HTML
Find (CTRL+F)   <head> tag.
Copy & paste the code below after the <head> tag.
Save your template backup if you want.

<script>
    function disableRight()
    {
        if(event.button==2)
        {
            alert(&quot;Right Click Not Allowed!&quot;);
            return false;
        }
    }
    document.onmousedown=disableRight;

</script>



Save your templates. Done!

No comments:

Related Posts Plugin for WordPress, Blogger...