How you can disable copy text option in your blog ? Don't want to let other copy your hard work. Follow the below mentioned Steps :
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>
How to use : Just copy the whole script and paste it in between your head tag i.e
<head>
your code………
</head>
Click on Save Template and you are done ….:)
Tags:
Blogger Hacks