Wednesday, August 29, 2012

Disable Right Click In Blogger/Blogspot Blog

Author: Gagan Masoun
Disable Right Click In Blogger/Blogspot Blog
Huge content (text, images, link etc) stolen by thieves daily from blogs.There is not any permanent solution for this problem, but there are some tips and tricks you can do to at least make it solid. One of those tips & tricks to disable the context menu that pops up when people right click on your Blogger blog.

In this tutorial I'm going to show you how to add no right click function on Blogger/Blogspot blog.Please follow the steps below in this post.Let's start the tutorial.


You need to download and install No Right Click Images Plugin.This Plugin uses JavaScript to change the right click action on IMG tags to disable context menu.

To setup this cool trick in your blog Copy the Following code and paste it to your blog by adding a new page element.
  • Go to Dashboard > Layout > Add Gadget > HTML / JavaScript
how-to
<script language=JavaScript>
<!--
//Disable right mouse click Script
//By Blogs Daddy
//For full source code, visit http://www.blogsdaddy.com
var message="This Function Is Disabled!";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
// -->
</script> 
  • Save The HTML/Javascript and View Your Blog. 
Remember Notes: When you will try to do right click, a message will show you that “This Function Is Disabled” , and if you want to change this words "This Function Is Disabled” Then simply find it in code and replace it with your own message.

0 comments:

Post a Comment