How To Disable Right click In Blogger - Fight Against Copying Your Posts.HELLO SHOAIB IT READERS !
TODAY MY TOPIC IS :

How To Disable Right click In Blogger - Fight Against Copying Your Posts.

I HAVE SEEN THAT SOME STEALERS ARE STEALING THE DATA BY COPYIG POSTS AND STEALING METIRIALS  TODAY I WILL SHARE A TRICK BY WHICH YOU CAN DISABLE RIGHT CLICK FEATURE IN YOUR BLOG OR WEBSITE SO YOU CAN PROTECT YOUR DATA AND CAN FIGHT AGAINST COPYING YOUR POSTS BY OTHERS
Have you noticed, that some web sites do not allow their visitors using right mouse click while pointer is on the blog area. This option is useful for the site and blog owners, who want to minimize the possibilities of the content direct copying to other posts.
Right click on any internet browser is very important element and we must use it when it comes to copy or editing texts and etc. It’s very important when it comes to webmasters too. but some people may use it in a bad way, and you may want to make click right disabled on your blog. to protect you text, images links and etc. SO FOLLOW THE STEPS TO DISABLE RIGHT CLICK OPTION IN YOUR BLOG OR WEBSITE
Step 1 : Go to Dashboard > Layout > Add Gadget > HTML / JavaScript
Step 2 : Copy the Code from Below and paste it in that blogger widget.
Step 3 : Save the html/javascript and view you blog.

<script language=javascript>
<!--

//Disable right mouse click Script
//By Being Geeks
//For full source code, visit http://www.mslangah.com

var message="Function Disabled - Get Back To MSLangah.Com!";

///////////////////////////////////
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>

When you will try to do right click, a message will tell you that “Function disabled” , and if you want to change this words” Function Disabled” Then simply find it in code and replace it.
IF YOU DONT UNDERSTAND THEN COMMENT BELOW
THANKS ...
 
Top