HTML script to disable right click on blogger/blogspot




HTML script to disable right click on blogger/blogspot

Here is the HTML script to disable right click on blogger/blogspot

<script language=javascript>
<!--

//edit by #animeshdebpk

var message="Right Click Has Been 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>


HTML script to disable text selection in blogger




HTML script to disable text selection in blogger

NOTE: This script will prevent just text selection on blog. To completely remove copy paste option you will have to disable right click also.


<!- start disable copy paste --><script src='demo-to-prevent-copy-paste-on-blogger_files/googleapis.js'></script><script type='text/javascript'> if(typeof document.onselectstart!="undefined" ) {document.onselectstart=new Function ("return false" ); } else{document.onmousedown=new Function ("return false" );document.onmouseup=new Function ("return false"); } </script>
<!-- End disable copy paste --></!->