It works when I remove the disabled attribute on an input type text field but not textarea, why?
I set the textarea to be disabled like this:
$('#message').attr('disabled', 'disabled');
which worked, but then later when I did this:
$('#message').removeAttr('disabled');
no luck.
The HTML:
<textarea id="message">Type here...</textarea>
I’m not seeing what you’re saying is happening:
http://jsfiddle.net/hunter/TRKzQ/
I’m guessing some other javascript error is happening. Is there more code?