I have two fields, one is emailid and another is password in my form. I want to prevent the user from pasting into those fields. They should be forced to enter manually, like Google Forms.
I have two fields, one is emailid and another is password in my form.
Share
You could disable
ctrl+vcombination andright clickas well.for IE, you may tap into following event handlers:
Here is a workaround for all browsers:
In HTML section, your fields would look like:
I don’t think user can copy password fields if input type is
passwordHope this helps.
Note: