Skip to content

Instantly share code, notes, and snippets.

@laurentperroteau
Last active August 29, 2015 14:06
Show Gist options
  • Save laurentperroteau/272811da2aca357f5d28 to your computer and use it in GitHub Desktop.
Save laurentperroteau/272811da2aca357f5d28 to your computer and use it in GitHub Desktop.
Prevent copy/paste on imput (need jQuery)
forbiddenCopy: function() {
$copy = $('.forbidden-copy');
$copy.on('copy paste cut', function(e) {
e.preventDefault();
return false;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment