Reputation: 12423
One of my clients do not want other sites to copy paste the content of a concrete textArea. Currently i have an inputTextArea as readonly="true", but i still need to disable the copy & paste function. Any ideas?
Upvotes: 1
Views: 5153
Reputation: 240938
Make your JSF code to produce following HTML, note oncopy
& onpaste
<textarea oncopy="return false;" onpaste="return false;">
Or enclose your components for which you want to disable copy & paste within following div
<div oncopy="return false;" onpaste="return false;">
<!-------Your component should go here ---->
</div>
Upvotes: 10