कई बार हम देखते है की लोग shortcut के चक्कर मे दूसरों का पूरा artical कॉपी कर लेते हैं ऐसे मे हमे अपने artical को protect करने की कोसिस करनी चाहिए इसी क्रम मे blogger posts को कैसे protect करना है इस artical मे बताया गया है ।
Steps:-
सबसे पहले अपना ब्लॉगर अकाउंट open कर लीजिये themes पर click करिए then edit html पर click करिए

following java script ko head tag के नीचे write कर दीजिये save theme पर क्लिक कर theme को save कर लीजिये अब आपके posts को कोई copy नहीं कर पाएगा
script:-
<script type=’text/javascript’>
var isCtrl = false;
document.onkeyup=function(e)
{
if(e.which == 17)
isCtrl=false;
}
document.onkeydown=function(e)
{
if(e.which == 17)
isCtrl=true;
if((e.which == 85) || (e.which == 67) && isCtrl == true)
{
// alert(‘Keyboard shortcuts are cool!’);
return false;
}
}
var isNS = (navigator.appName == “Netscape”) ? 1 : 0;
if(navigator.appName == “Netscape”) document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
function mischandler(){
return false;
}
function mousehandler(e){
var myevent = (isNS) ? e : event;
var eventbutton = (isNS) ? myevent.which : myevent.button;
if((eventbutton==2)||(eventbutton==3)) return false;
}
document.oncontextmenu = mischandler;
document.onmousedown = mousehandler;
document.onmouseup = mousehandler;
</script>

thats all