Does that all actually work for you? I copied that and tested it and it didn't work for me.
Anyhow I would suggest for textbox value transfers, using something like
document.<form name>.<Textbox2 name>.value = document.<form name>.<Textbox1 name>.value
so in your case, if you give your form the name of "Test"
|
Code:
|
document.Test.stuff2.value=document.Test.stuff1.value; |