How to protect your Blog from copy paste
It really make us hurt when we our blog post are copied by
someone. You already know that there is a rule that every users write their own
thoughts which are not copyright. I you enter a good post and someone copy it
from your blog then your blog didn’t get more traffic. Therefore, I am going to
show you that how you protect your post form copypaste or how you disable copy
paste form your blog.
Now follow these steps to protect your blog
from copy and paste :
- Open your blogger dashboard.
- Then go to Template > Edit html.
- Then when the page will appear Find (Ctrl+F) the <head> tag.
- Then just below the <head> tag paste the below code.
<!--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>
<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>
0 comments:
Post a Comment