Text Box Value from drop box
Posted: Thu Oct 01, 2009 4:52 pm
Hey everyone.
I am having a lil trouble here I am on the right track but just not making it here anyway... What I want to do it this.
I have a drop box
and I have a textbox
now with selecting each option I need to have a value of the text box reflect. ex. if AlertPay is selected then value in text box would be alertpay and same with stp however with coupound would be different.
I need to hide the textbox above and 1 other one and replace it with another text box.
I hope i have explained it good I am unsure myself.
Thanks
I am having a lil trouble here I am on the right track but just not making it here anyway... What I want to do it this.
I have a drop box
Code: Select all
<select name="meth" id="meth">
<option value="select" selected="selected">Select </option>
<option value="ap">Alert Pay</option>
<option value="stp">Solid Trust Pay</option>
<option value="cp">Compound</option>
</select>Code: Select all
<input name="acc" type="text" size="35" maxlength="50">I need to hide the textbox above and 1 other one and replace it with another text box.
I hope i have explained it good I am unsure myself.
Thanks