Brandon Tanner
Jul 3rd 2008, 9:02 pm
Hey everyone,
I have a simple HTML multiline textbox, and I want to use Javascript to get text that the user types into that box, and then I want to print that text in a different multiline text box. How would I do that?
I've figured out how to get the value from the original textbox and write it on the screen, for example...
document.write("Here is your text... <BR>" +
window.document.formOne.userText.value);
...But I can't figure out how to print that value in *another* text box.
Any help is greatly appreciated. Thanks!
I have a simple HTML multiline textbox, and I want to use Javascript to get text that the user types into that box, and then I want to print that text in a different multiline text box. How would I do that?
I've figured out how to get the value from the original textbox and write it on the screen, for example...
document.write("Here is your text... <BR>" +
window.document.formOne.userText.value);
...But I can't figure out how to print that value in *another* text box.
Any help is greatly appreciated. Thanks!