in the same dynamic way i'd like to do this :
i do have a multiple select box :
<SELECT NAME="first_list" MULTIPLE style="HEIGHT: 87px; WIDTH: 115px">
<OPTION VALUE="">Project start date
<OPTION VALUE="">Quote Status
<OPTION VALUE="">Quote Closed Date
<OPTION VALUE="">Prj desc.
<OPTION VALUE="">BDD</OPTION>
</SELECT>
an add button :
<input type="submit" name="add_one" value=">" >
an a second empty multiple select box :
<SELECT NAME="second_list" MULTIPLE style="HEIGHT: 86px; WIDTH: 116px">
</SELECT>
what i'd like is that when i select an option of first_list and then click on the add button, this option appears in the second_list list.
is there a way to do that in javascript ? or should i use an otehr language ? what are the method and the elements to be called if i do this in JS ?
Best regards X-),
Elise
i do have a multiple select box :
<SELECT NAME="first_list" MULTIPLE style="HEIGHT: 87px; WIDTH: 115px">
<OPTION VALUE="">Project start date
<OPTION VALUE="">Quote Status
<OPTION VALUE="">Quote Closed Date
<OPTION VALUE="">Prj desc.
<OPTION VALUE="">BDD</OPTION>
</SELECT>
an add button :
<input type="submit" name="add_one" value=">" >
an a second empty multiple select box :
<SELECT NAME="second_list" MULTIPLE style="HEIGHT: 86px; WIDTH: 116px">
</SELECT>
what i'd like is that when i select an option of first_list and then click on the add button, this option appears in the second_list list.
is there a way to do that in javascript ? or should i use an otehr language ? what are the method and the elements to be called if i do this in JS ?
Best regards X-),
Elise