Created
January 8, 2021 10:32
-
-
Save Rameshwar-ghodke/43496977998db4cf3db88ff4d74f5d5d to your computer and use it in GitHub Desktop.
you can keep your content secure from visitors to copy and paste.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
$(document).ready(function () { | |
//to disable the entire page | |
$('body').bind('cut copy paste', function (e) { | |
e.preventDefault(); | |
}); | |
//to disable a section | |
$('#id').bind('cut copy paste', function (e) { | |
e.preventDefault(); | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment