Being blogger it hurts a lot when your work i.e your blog posts are copied by some other fellows and they post it in their blogs same to same without altering any of the words. What will you do to stop others from doing this? Today I am going to tell you how to disable copy and paste from your blog.
Instructions To Follow To Stop Your Blog Posts From Being Copied :-
1--> Login to your Blogger Account.
2--> Go to Blogger Admin Page > Template > Click on Edit HTML.
3--> Ctrl + F and search <head>.
4--> Just below <head> copy and paste the codes
<!--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>
Its done :)
Instructions To Follow To Stop Your Blog Posts From Being Copied :-
1--> Login to your Blogger Account.
2--> Go to Blogger Admin Page > Template > Click on Edit HTML.
3--> Ctrl + F and search <head>.
4--> Just below <head> copy and paste the codes
<!--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>
Its done :)
No comments:
Post a Comment