For text input I do:
input
$(\'input[type=\"text\"]\').each(function(){ $(this).attr(\'readonly\',\'readonly\'); });
But what shou
Try this
$("#mytxtarea").attr("disabled", "disabled");