hi can someone help me with a javascript code i need? i'm want to get a drop-down menu where i have a number of options to chose from(say 5) i want to pick 1 of these options and then have that option sent to a text box(on the same page) then i would pick another option from the drop-down and that pick would be sent to another text box(below the first text box). i'm a very very beginner at this so my knowledge is almost nil on this...... i would love to hear from someone...and appriciate the help. thanks.
assuming the text box is named text1 and the form is form1, you could simply add this to the select tag: onchange="document.form1.text1.value=this.value" Code (markup):
I have developed a 3 tier dropdown list which populates the next dropdown. I developed this from http://www.dynamicdrive.com/dynamicindex16/chainedselects/index.htm I may give you some ideas to develop your own!