Skip to content

Instantly share code, notes, and snippets.

@bulbul84
Created August 2, 2023 01:13
Show Gist options
  • Save bulbul84/37a5e337ba6fcede185a479738a4c7a5 to your computer and use it in GitHub Desktop.
Save bulbul84/37a5e337ba6fcede185a479738a4c7a5 to your computer and use it in GitHub Desktop.
Disable cut, copy content from website
$(document).ready(function() {
$('body').bind('cut copy', function(e) {
e.preventDefault();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment