Issue
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:
<select name="hall" id="hall" value="3">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
However, this did not work as I had expected. How can I set which <option> element is selected by default?
Solution
Set selected="selected" for the option you want to be the default.
<option selected="selected">
3
</option>
Answered By - Borealid
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.