I am searching for a possibility to disable all keyboard keys in a textarea. I found some examples on the web to disable some single ones but how can I disable the whole keyboard??
|
You can disable the textarea using the disabled attribute. Or you can make it read only using the readonly attribute. readonly is like disabled except it doesn't prevent the user from clicking or selecting in the textarea. And if you really need to do it with javascript something like this will do it (using jQuery):
You can try it here: http://jsfiddle.net/7n4G4/1/ |
||||
|
|
|
Assuming you have in
That it's probably an overkill, but... Considering to use the attribute readonly instead:
In the first case you're still able to copy/paste using the mouse, in the second case you can only copy (using keys or mouse doesn't matter). |
|||
|
|
|
use the readonly attribute if you want to make sure that your user can still click and select inside of the textarea
if you want to keep it completely disabled without selecting
if want to prevent only keyboard input
very simple with jQuery
|
|||
|
|
Dunno why you want to do that if you can just |
|||
|
|
readonlywork for you ? It is an alternative todisablethat will let users click on the textarea but not change it developer.mozilla.org/en/HTML/Element/textarea – Murtnowski Apr 21 '12 at 17:29