javing
javing

Reputation: 12423

Disable copy paste function in a h:inputTextarea tag JSF(2.0)

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

Answers (1)

Jigar Joshi
Jigar Joshi

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

Related Questions