Here I am going to tell you that how you can disable copy text option in your blog.Well do not think that this trick can stop anyone to copy content from your blog because this trick can be bypassed easily by experienced Internet user.
Copy the code below :
<!– Disable Copy and Paste–>
<script language=’JavaScript1.2′>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
Just copy the whole script and paste it in between your head tag i.e
<head>
[CoDe]
</head>
Click on Save Template.