Hi,
I have a combobox which is populated dynamicly when the page loads. Lets say it
<select name="Test">
<option selected value="A">A</option>
<option value="B">B</option>
<option value="C">C</option>
</select>
What I'm trying to accomplish: in the moment when I click a button the selected value form the combobox to be B not A anymore. So the combobox will show B not A.
Is there a way to do it through Javascript and not to reload the page?
Thanks a lot,
Durug
I have a combobox which is populated dynamicly when the page loads. Lets say it
<select name="Test">
<option selected value="A">A</option>
<option value="B">B</option>
<option value="C">C</option>
</select>
What I'm trying to accomplish: in the moment when I click a button the selected value form the combobox to be B not A anymore. So the combobox will show B not A.
Is there a way to do it through Javascript and not to reload the page?
Thanks a lot,
Durug