Posts by alexandrenascimento • 31 points
1 post
-
3
votes4
answers14813
viewsA: I need to lock Ctrl+v in a text box
To avoid Crtl+C Crtl+V or Crtl+X, you can use it as well... $(document).ready(function() { $('#texto').bind('cut copy paste', function(event) { event.preventDefault(); }); });…