How can I disable Ctrl+V (Paste) option using jQuery in one of my input text fields....
feedback
|
|
This seems to work ok. You can listen to keyboard events with jQuery and prevent the event from completing if its the key combo you are looking for. Note, check 118 and 86 ('V' and 'v') Working example here: http://jsfiddle.net/dannylane/9pRsx/4/
Update: keypress doesn't fire in IE, use keydown instead. | |||||||||||
feedback
|
|
This now works for IE FF Chrome properly..I have not tested for other browsers though
| |||||||
feedback
|
| |||
|
feedback
|
|
Put this in your textbox: Regards. | |||||||||||||
feedback
|
|
You can catch key event :
Not tested but, could help. Source from comentcamarche and Zakaria | |||||||
feedback
|