How to disable cut, copy, paste from website and blogger?

Steps to disable cut, copy and paste in blogger or web 
  • Open tour website or blogger.
  • Go to theme option.
  • Click on CUSTOMIZE button.
  • click on Edit HTML. 
  • Paste the following code just before the</body> tag.
<!-- Blogger Scripts -->
 
<script src='//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-61f17a1bfd90fb34' type='text/javascript'/>
  <script type='text/javascript'>
$(document).ready(function () {
    //Disable cut copy paste
    $(&#39;body&#39;).bind(&#39;cut copy paste&#39;, function (e) {
        e.preventDefault();
    });
    
    //Disable mouse right click
    $(&quot;body&quot;).on(&quot;contextmenu&quot;,function(e){
        return true;
    });
});
</script>

 

Post a Comment

Previous Post Next Post