Is there a way to programmatically click on a combobox item?
- by mrentropy
Hi,
I've been trying experiments with the following, but so far to no avail:
sel = document.getElementById('myComboBox')
sel.selectedIndex = 1;
sel.options[1].selected = true;
sel[1].click();
Thanks for the help!