I’ve noticed that some sites (usually banks) suppress the ability to paste text into text fields. How is this done? I know that JavaScript can be used to swallow the keyboard shortcut for paste, but what about the right-click menu item?
I’ve noticed that some sites (usually banks) suppress the ability to paste text into
Share
Probably using the
onpasteevent, and eitherreturn falsefrom it or usee.preventDefault()on the Event object.Note that
onpasteis non standard, don’t rely on it for production sites, because it will not be there forever.