How to stop visitors from copy paste your blog content. ?


I will teach you how stop your visitors from copying and pasting your blog content.This will make it hard enough to discourage them and get them moving on to easier targets.However This means your content isn’t completely safe.This Trick is easily bypass.

Procedure
Log in blogger Click Design

Page Elements Add Gadget
 

HTML/JavaScript
 Copy Following Java script code(note that the credits of the author of this java script remains.Please don’t remove it if you share this.Keep them)
<script language="JavaScript">
<!--  
//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com  
var message="Function 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>

Now you can Preview or Save


 

Try right Clicking on your blog the message will appear that Funcltion Disabled.You can change the Error message appears.just replace Funcltion Disabled quote to what ever you like to add such as Copy Denied,Copy Right Content….etc

0 comments: