I have a problem.
I use two comboboxes cb1 and cb2
tb1 and tb2 are textfields to display the selection.
whenever I wanted take the data from cb2 I always get the data from CB1
Please help me to resolve this
my code runs as follows
function page61(){
var hv_cable_size =$(‘select[#m1-page6-cb1] :selected’).val();
var lv_cable_size =$(‘select[#m1-page6-cb2] :selected’).val();
$(‘#m1-page6-tb2’).val(hv_cable_size);
$(‘#m1-page6-tb1’).val(lv_cable_size);
}