I use html5, jquery, css for web designing. Anybody please tell me how to restrict the paste of data into an input text field in HTML. I searched for it, but I had to limit the copy, but not to paste it. Please help me. Thank you.
Using jquery, you can avoid paste using this
$ ('.textboxClass'). ('Paste', function (e) {e.preventDefault ();});
You can avoid copy paste and use
$ ('. TextboxClass') using this. ('Copy paste cut', function (e) {E.preventDefault ();});
No comments:
Post a Comment