Tutorials How to stop right click copy from your website

XFModz

Administrator
Staff member
Admin
‎1 Year of Service‎
Put the code in the desired section:
HTML:
<script>
$(document).bind('copy', function(e){
      return false;
    });
</script>
<script>
$(document).bind('copy', function(e){
      alert('Warning! Copying the contents of the xfwiz.com forum is prohibited.');
      return false;
    });
</script>

Output:
Code:
Warning! Copying the contents of the xfwiz.com forum is prohibited
 
Back
Top