need to feed a text field with values from other input 
Author Message
 need to feed a text field with values from other input

I am trying to embed the javascript in the FullName text field ... I've seen
it done before, but cannot remember where it was or how I did it :(

so what am I doing wrong??

<form name="myForm">
<input type="text" name="First" value="Lynda" >
<input type="text" name="Last" value="Smith" >
<input type="text" name="FullName"
value="<javascript:document.myForm.First.value + ' ' +
        document.myForm.Last.value;>">
</form>



Tue, 12 Apr 2005 03:37:30 GMT  
 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



Sun, 17 Apr 2005 00:09:07 GMT  
 need to feed a text field with values from other input
How can we alter this so that the value of the text input is dependent on
the value of a <select> type of input?



Quote:
> 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



Thu, 28 Apr 2005 17:35:21 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. I am trying to feed a text field with data from two other fields

2. Displaying text/input field depending on checkbox value

3. Update text input fields in a child window - need help

4. Need Help With JScript To Modify A Input Text Value

5. form input field initial value truncate after space

6. Get form input field value before submit?

7. simulate a rich text input field??

8. How to: Insert text in input-field from another window

9. Hybrid input text/choice field possible in HTA?

10. non-clear text input field?

11. Updating text input value on Keypress

12. changing select options based on text value in another field

 

 
Powered by phpBB® Forum Software