Disable Copy and paste from website
If you do not want your content to be copied from your webpage then you can disable copy and paste from your website using following code.
<script>
$(‘body’).bind(‘copy paste cut drag drop’, function (e) {
e.preventDefault();
});$(‘body’).bind(‘copy paste cut drag drop’, function (e) {
e.preventDefault();
});
</script>