Preventing Copy/Paste in HTML forms
It’s not a very common request that someone asks for a input box to not allow copy/paste functionality, but it happens every now and then!
Below is the jQuery code I found that did the job for me, I hope it helps you…
$(‘#inputField’).bind(“cut copy paste”,function(e) {
e.preventDefault();
});
