Loading...

How To Make Your Blog Content Can't Be Copied By Others

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 ››

  1. Go to your Blogger Dashboard ›› Template ›› Edit HTML.
  2. Add the script below after </head>
  3. /* 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 >
  4. Then, click Save Template.


*Second Ways ››

  1. Go to your Blogger Dashboard ›› Layout ›› Add a Gadget ›› HTML/JavaScript.
  2. Add the code below.
  3. /* Anti Copy Paste 2 by infoBlog */ <script> var pesen="Sorry, Can't Copy And Paste This Content"; /////////////////////////////////// function clickIE4(){if (event.button==2){alert(pesen);return false;}} function clickNS4(e){if (document.layers||document.getElementById&&!document.all){if (e.which==2||e.which==3){alert(pesen);return false;}}} if (document.layers){document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS4;} else if (document.all&&!document.getElementById){document.onmousedown=clickIE4;} document.oncontextmenu=new Function("alert(pesen);return false") </script>
  4. Then, click Save.


*Third Ways ››

  1. Go to your Blogger Dashboard ›› Template ›› Edit HTML.
  2. Add the code below before ]]></b:skin> or </style>.
  3. /* 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;
    }
  4. Then, click Save Template.
  5. After that, to apply it, add the code below on your blog posts ( HTML mode ).
  6.  <div class="do-not-copy"> Put your content that should not be copied </div>
  7. Finally, click Publish.

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