hi. i have a little problem that i can not work out and i am hoping if u can solve it. i am trying to write to a text area using this piece of code for example. myForm.cyberPetDaily.value = (speak); but everytime i invoke this method to write on the text area the previous output gets deleted. i want them to appear one aftrer the other without deleting themselves, i tryed to put thr new line char at the end but it doesnt work. any suggestions? thank!!
get the old content into a var like var old = myForm.cyberPetDaily.value; myForm.cyberPetDaily.value = old + "\n" + speak ;