1.

Write code to disable cut copy and paste

Answer»

Below is the code to disable CUT copy and paste . Here code is of jquery by simply writing the code


$(document).READY(function(){
$('#txtInputId').BIND("cut copy paste",function(E) {
e.preventDefault();
});
});



Discussion

No Comment Found