remove copy paste in textbox code example
Example 1: javascript disable copy paste
<body oncopy="return false" oncut="return false" onpaste="return false">
Example 2: disable copy past jquery
//Disable cut copy paste
$('body').bind('cut copy paste', function(e) {
e.preventDefault();
});