Skip to content

Instantly share code, notes, and snippets.

@manigandanta
Created April 25, 2012 05:34
Show Gist options
  • Save manigandanta/2486794 to your computer and use it in GitHub Desktop.
Save manigandanta/2486794 to your computer and use it in GitHub Desktop.
disable cut copy paste in a text box using jquery
$('#email').live("cut copy paste",function(e) {
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment