Hi all,
I’ve created two combobox. When user makes a change on the first one, the second one change too..
I’ve implemented this JS
var dinch = $(‘select[name=”DiamIN”]’).val(); //Taking value from first combobox
// Set value on the MM seconde comboBox
$(‘select[name=”DiamMM”]’).val(dinch).change();
My problem is that .change() seems to take until 2 second to make a change of the second combobox value.
.change() is necessary because using only VAL() makes changes only to the selected value but not on the combobox’s label
Someone can help me on this?
Thanks a lot for your support!