I have two jquery comboboxes populated with various options:
<select id="project">
<option value="1">This is project 1</option>
<option value="2">This is project 2</option>
</select>
<select id="tasks">
<option value="1">This is task 1</option>
<option value="2">This is task 2</option>
</select>
I haven't shown all the html that the comobobox script adds which includes text boxes. The problem is when I make a selection from the first combo I want to script a selection in the 2nd comobobox, but for some reason I can't get the selection to show.
I would create a jsfiddle to demostrate the problem but I don't know how to link resources.
I've tried setting the selectedIndex member or calling the val() method, no luck.