You can prevent cut, copy and paste in your input type textboxe's or in textarea's by using jquery code very easily.
Below is the jquery code:-
$(document).on('cut copy paste', '.controlClass', function (e) {
e.preventDefault();
});
Below is the jquery code:-
$(document).on('cut copy paste', '.controlClass', function (e) {
e.preventDefault();
});
No comments:
Post a Comment