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:

Facebook Blogger Plugin: Bloggerized by AllBlogTools.com Enhanced by MyBloggerTricks.com

Post a Comment

Related Posts Plugin for WordPress, Blogger...