Disable cut, copy, paste in textarea - HTML Views : 1083
Tagged in : HTML
3 0
Send mail
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>
By Nirmala, On - 2010-04-08



    Login to add Comments .