Hi How can two forms share the same inputs? I have two forms, one for two different paths... if i wanted to get the user to enter their name, but only once.... how could both forms get hold on this field?
+2
A:
Using JavaScript you could set one field's value to another's.
Something like:
document.form2.input.value = this.value;
Put that code in the onblur event for your first form.
So:
<form name="form1">
<input type="text" name="input" onblur="document.form2.input.value = this.value;" />
</form>
<form name="form2">
<input type="text" name="input" onblur="document.form1.input.value = this.value;" />
</form>
Sbm007
2009-11-07 09:41:02
was hoping to do this without JS but what they hey :)
tarnfeld
2009-11-07 09:42:47
Unfortunately there is no other way, I've edited my post to include a copy-paste example.
Sbm007
2009-11-07 09:43:48