programmher
Programmer
I have a select/drop-down box that allows users to select a value. This value is composed of three variables. My problem is passing all three variables to their corresponding SEPARATE text fields.
I can successfully pass one variable; but nothing happens when I include all the variables in a string. What am I missing?
Below is the string that works and how I am attempting to enhance the same string to include all the variables:
<select name="change_delivery_name" onChange="this.form.delivery_name.value=this.value;">
<select name="change_delivery_name" onChange="this.form.delivery_name.value=this.value?this.form.delivery_number.value=this.value;">
I have also attempted this using an ampersand.
I can successfully pass one variable; but nothing happens when I include all the variables in a string. What am I missing?
Below is the string that works and how I am attempting to enhance the same string to include all the variables:
<select name="change_delivery_name" onChange="this.form.delivery_name.value=this.value;">
<select name="change_delivery_name" onChange="this.form.delivery_name.value=this.value?this.form.delivery_number.value=this.value;">
I have also attempted this using an ampersand.