Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Rameshwar-ghodke/43496977998db4cf3db88ff4d74f5d5d to your computer and use it in GitHub Desktop.
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.
<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