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 key
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
$("#text-input").on("keydown keypress keyup", false);