How To Disable Content copying from your blog/ website ?

How to disable right click and copying content
Disable right-click & copy from the website



Steps

Go To Theme Editor of your Blog or Website, after logging to admin panel.
Press "CTRL+F" & find </body>  & place the below given code as it is. 

  <!--Disable Copy Content Starts Here-->
<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 false;
});
});
</script>
  <!--disable copy content Ends Here-->

 

Now You're Done ...!


Search-Terms 
How to Disable Copy and Right-Click on Website, prevent copying text in a web-page, How to Disable Text Selection, Copy, Cut, Paste and Right-click, Disable Content Selection, Copy, Cut, Paste and Right-click, HTML code for preventing copying text from the web page, Disable mouse right-click, cut, copy and paste using jQuery.

Post a Comment

0 Comments