
need to feed a text field with values from other input
It all depends on how U want to populate the full name field
Below is the code : when the user focus on the the full Name field .. the
name populates.
________________ Start Code ______________
<form name="myForm">
<input type="text" id = a name="First" value="Lynda" >
<input type="text" id = b name="Last" value="Smith" >
<input type="text" name="fullName" onfocus="javascript:this.value=a.value +
' ' + b.value;">
</form>
_______________End Code ________________
I hope that will help
Regards
Kiran Math