Use:
document.formname.textareaname.value
Example:
<html><body>
<form name="frm1">
<textarea name="txt1" COLS=40 ROWS=5></textarea>
</form>
<input type="button" value="GET"
onclick="alert(document.frm1.txt1.value)">
</body></html>
-- Secret_Doom - Leonardo Pignataro --
secret_doom@hotmail.com
www.batch.hpg.com.br
: how can i get the text of textarea object in html?
: