up vote 1 down vote favorite
share [g+] share [fb]

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?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

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>
link|improve this answer
was hoping to do this without JS but what they hey :) – tarnfeld Nov 7 '09 at 9:42
Unfortunately there is no other way, I've edited my post to include a copy-paste example. – Sbm007 Nov 7 '09 at 9:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.