Some of you may already noticed, that .innerHTML of an html-object like textarea may not be changed if you edited the objects content manually.
For example setting a textarea's innerHTML won't result in any changes if you do it, right after you manually added text to the textarea.
To workaround this issue, you should always use .value on textarea-fields, even though its declared as:
<textarea>inner html</textarea>