Text Selection Disabled on Blogger Page:
Now a days copy right is big issue for blogger, any one copy your text and paste on his own blog which will make harder for your blogger rank. So this code help you to disabled your text copy.
Text Selection Disabled or Left Click Disabled on your Blogger Post Html Code given below:
<script type="text/javascript">
/***********************************************
* Disable Text Selection script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
function disableSelection(target){
if (typeof target.onselectstart!="undefined") //For IE
target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined") //For Firefox
target.style.MozUserSelect="none"
else //All other route (For Opera)
target.onmousedown=function(){return false}
target.style.cursor = "default"
}
window.onload=function(){disableSelection(document.body);}
</script>
——————————————————————————-
Copy above Code and paste it where you want to disabled left click.