<textarea id="parentTA" name="parentTA" cols="30" rows="10">Parent Textarea</textarea>
<textarea id="childTA" name="childTA">Child Textarea</textarea>
<font color=red id="childTC">fdsa</font>
<Script Language="JScript">
parentTA.appendChild(childTA);
parentTA.appendChild(childTC);
window.alert('value:' + parentTA.value + '/n innerHTML:' + parentTA.innerHTML);</Script>
</BODY>
<textarea id="childTA" name="childTA">Child Textarea</textarea>
<font color=red id="childTC">fdsa</font>
<Script Language="JScript">
parentTA.appendChild(childTA);
parentTA.appendChild(childTC);
window.alert('value:' + parentTA.value + '/n innerHTML:' + parentTA.innerHTML);</Script>
</BODY>