disable paste in textbox code example
Example: disable copy past jquery
//Disable cut copy paste
$('body').bind('cut copy paste', function(e) {
e.preventDefault();
});
//Disable cut copy paste
$('body').bind('cut copy paste', function(e) {
e.preventDefault();
});