I've got a combo box with options, what I want is a function where I send one of the options, and the combo box set that option to the selected one, showing it.
I try
$("#cmbStrategies option:selected").html('Condor');
It works set Condor as the selected option, but adding it has a new option, resulting in two option Condor.
I want just select the option but not adding a new one.