Hello again,
I am stuck at doing some passing of data. I have a form that has 3 cascading dynamically populated list boxes. The problem is that when I click on the first list box, I want the values selected to be passed into another page. I have created a javascript functions to hold these values, however I want to pass these values to a hidden txt box field when the user selects them. And then I want to pass the selected values to another page. How do I do that. Thanks again.
function readtext(form){
for (x=2;x<document.form1.combo1.length;x++){
if (document.form1.combo1[x].selected){
var TestVar = (document.form1.combo1.options[x].text);
alert("You typed: " + TestVar);
}
}
}
I am stuck at doing some passing of data. I have a form that has 3 cascading dynamically populated list boxes. The problem is that when I click on the first list box, I want the values selected to be passed into another page. I have created a javascript functions to hold these values, however I want to pass these values to a hidden txt box field when the user selects them. And then I want to pass the selected values to another page. How do I do that. Thanks again.
function readtext(form){
for (x=2;x<document.form1.combo1.length;x++){
if (document.form1.combo1[x].selected){
var TestVar = (document.form1.combo1.options[x].text);
alert("You typed: " + TestVar);
}
}
}