Perhaps you could do something like:
var txtArea = document.getElementById("YourTextAreaId"); txtArea.oncopy = function() { return false; } txtArea.onpaste = function() { return false; } txtArea.oncut = function() { return false; }
But even then, the user can copy content in other ways, as suggested in your question.
Sudhir bastakoti
source share