Reputation: 1399
I want to prevent a user from pasting anything into my input field.
This is what I have tried:
onpaste="event.returnValue=false;"
Upvotes: 0
Views: 447
Reputation: 2533
<input type="text" onPaste="return false;">
Upvotes: 2