Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I thought some thing like this would work:

<select name="hall" id="hall" value="3">
    <option>
    1
    </option>
    <option>
    2
    </option>
    <option>
    3
    </option>
    <option>
    4
    </option>
    <option>
    5
    </option>
</select>

But it didn't. So How could I set a default value for select?

Thanks.

share|improve this question

5 Answers

up vote 122 down vote accepted

Set selected="selected" for the option you want to be the default.

<option selected="selected">
3
</option>
share|improve this answer
<option value="3" selected="selected"> 3 </option> The value would be passed as a string when option 3 is selected. – Sree Rama Mar 19 at 7:42
1  
And keep continue using id attribute for <Select> and it is not good to use value attribute for <select> html element. – Sree Rama Mar 19 at 7:48
<select name="hall" id="hall"> 
    <option> 
    1 
    </option> 
    <option> 
    2 
    </option> 
    <option selected> 
    3 
    </option> 
    <option> 
    4 
    </option> 
    <option> 
    5 
    </option> 
</select> 
share|improve this answer

You can do it like this:

<select name="hall" id="hall">
    <option> 1 </option>
    <option> 2 </option>
    <option selected> 3 </option>
    <option> 4 </option>
    <option> 5 </option>
</select> 

Provide "selected" keyword inside the option tag, which you want to appear by default in your drop down list.

Or you can also provide attribute to the option tag i.e.

<option selected="selected">3</option>
share|improve this answer
4  
Just to be clear, the w3 standard is <option selected="selected">3</option> – JRM Jul 22 '12 at 21:00
3  
@JRM I think what you mean is that if for your document to be XHTML compliant than an attribute must have a a value. In HTML there is no need for "selected=selected". The examples on w3.org/wiki/HTML/Elements/select, developer.mozilla.org/en-US/docs/HTML/Element/select do not specify a value. The important thing to note is that selected="false" is not allowed and selected="" also makes it selected. The only way to make an options not selected is to remove the attribute. w3.org/html/wg/drafts/html/master/… – Juan Mendes Jan 15 at 17:39

Add this attribute to option tag:

selected="selected"
share|improve this answer

You may write:

<select name="hall" id="hall" value="3">
<option>
1
</option>
<option selected="selected">
2
</option>
<option>
3
</option>
<option>
4
</option>
<option>
5
</option>

adding attribute selected="selected" to any option makes that option selected by default

share|improve this answer
Good, but should be selected="selected", i.e. with no whitespace... formatting error? – David John Welsh Jan 25 at 6:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.