Disable cut, copy, paste in textarea
by Nirmala[ Edit ] 2010-04-08 17:35:23
Disable copy paste in Textarea
Just use the below code to disable cut, copy, paste in your textarea.
<textarea oncopy="return false" onpaste="return false" oncut="return false"></textarea>