How To Make Your Blog Content Can't Be Copied By Others - To keep the content of your blog can not copy is the best way to minimize the occurrence of theft of content on your blog articles. However, if your blog is about Tutorials and contain Script code, CSS code, or whatever should not be installed anti copy paste.
Follow the steps below To Make Your Blog Content Can't Be Copied By Others . .
How To Make Your Blog Content Can't Be Copied :
*First Ways ››
- Go to your Blogger Dashboard ›› Template ›› Edit HTML.
- Add the script below after </head>
- Then, click Save Template.
/* Anti Copy Paste 1 by infoBlog */
<script type="text/javascript">
if (typeof document.onselectstart!="undefined") {
document.onselectstart=new Function ("return false");
}
else{
document.onmousedown=new Function ("return false");
document.onmouseup=new Function ("return true");
}
</script >
<script type="text/javascript">
if (typeof document.onselectstart!="undefined") {
document.onselectstart=new Function ("return false");
}
else{
document.onmousedown=new Function ("return false");
document.onmouseup=new Function ("return true");
}
</script >
*Second Ways ››
- Go to your Blogger Dashboard ›› Layout ›› Add a Gadget ›› HTML/JavaScript.
- Add the code below.
- Then, click Save.
*Third Ways ››
- Go to your Blogger Dashboard ›› Template ›› Edit HTML.
- Add the code below before ]]></b:skin> or </style>.
- Then, click Save Template.
- After that, to apply it, add the code below on your blog posts ( HTML mode ).
- Finally, click Publish.
/* Anti Copy Paste 3 by infoBlog */
.do-not-copy {
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
.do-not-copy {
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
<div class="do-not-copy"> Put your content that should not be copied </div>
Enough of tutorial about How To Make Your Blog Content Can't Be Copied By Others. If you have any questions or suggestions, please write in the comments field below or directly send questions through the Contact Us service. Hopefully this article useful and you willing to share this article through social media accounts you have.
Thanks For Your Visiting
EmoticonEmoticon