If I have two forms on the same page...
<form name="form1">
<input type="text" name="boxa">
</form>
<form name="form2">
<input type="text" name="boxb">
</form>
...is there any way of making what is typed into box a appear in box b as you type. I didn't want to use onkeypress=submit() as there is some other stuff going on on the page that I don't want to lose.
Thanks very much
Ed
<form name="form1">
<input type="text" name="boxa">
</form>
<form name="form2">
<input type="text" name="boxb">
</form>
...is there any way of making what is typed into box a appear in box b as you type. I didn't want to use onkeypress=submit() as there is some other stuff going on on the page that I don't want to lose.
Thanks very much
Ed