I thought that adding a "value"
attribute set on the <select>
element below would cause the <option>
containing my provided "value"
to be selected by default:
However, this did not work as I had expected. How can I set which <option>
element is selected by default?
Set selected="selected"
for the option you want to be the default.
<option selected="selected">
3
</option>