user1599537
user1599537

Reputation: 1399

Prevent user paste in fields

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

Answers (1)

yasaricli
yasaricli

Reputation: 2533

<input type="text" onPaste="return false;">

Upvotes: 2

Related Questions