Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently using jQuery to return some JSON results. Once these results are returned, I'm using them to pre-populate fields in my form.

However, I need some help in pre-selecting items in a drop down box. For example, I have a select box (this is shortened):

<select id="startTime">
<option value="14:00:00">2:00 pm</option>
<option value="15:00:00">3:00 pm</option>
<option value="16:00:00">4:00 pm</option>
<option value="17:00:00">5:00 pm</option>
<option value="18:00:00">6:00 pm</option>
</select>

And if my JSON value is:

 var start_time = data[0].start  // Let's say this is '17:00:00'

How can I, using jQuery, make the option with value '17:00:00' selected?

 <option value="17:00:00" selected="selected">5:00 pm</option>
share|improve this question
jQuery 1.9 changes this from .attr() to .prop(). I have provided an updated answer below. – Joshua Mar 6 at 19:12

6 Answers

up vote 24 down vote accepted
$('option[value=17:00:00]').attr('selected', 'selected');

or

$('option[value='+ data[0].start +']').attr('selected', 'selected');
share|improve this answer
Exactly what I was looking for. Thanks. – Dodinas Oct 15 '09 at 17:48
6  
Good answer. I would probably also recommend accounting for which selection box like so: $('#mySelect option[value="17:00:00"]').attr('selected','selected'); – Volomike Nov 19 '09 at 1:59
Thanks for the additional information – Krishnan Jun 14 '11 at 11:40
This code works perfect when JSON is one word, but when it has a space in it (two words) it breaks... any ideas? $('#selSource option[value='+ obj.DATA[0][obj.COLUMNS.indexOf('SOURCE')] +']').attr('selected', 'selected'); – user1431633 Sep 28 '12 at 22:34
needed to surround it with double quotes... $('#selSource option[value=\"'+ obj.DATA[0][obj.COLUMNS.indexOf('SOURCE')] +'\"]').attr('selected', 'selected'); – user1431633 Sep 28 '12 at 22:47
$('#startTime').val(start_time);
share|improve this answer

It's just $("#startTime").val(start_time);

share|improve this answer

For some reason for me it works like this:

$('#startTime').val(''+data[0].start+'');
share|improve this answer

UPDATE

As of jQuery 1.9, jQuery has updated changed this functionality. The "selected" state of an option is actually a property, therefore jQuery has changed this to use the .prop() method. Syntax is very similar and easy to switch:

$('option[value=17:00:00]').prop('selected', 'selected');
share|improve this answer

Additional Information for jquery mobile users (1.3.0):

Here's a similar example.

If you try the example above with jquery 1.9.1 and jquery mobile 1.3.0 you can see that it's not working unless you add a

$("#location_list").selectmenu("refresh");

Keep that in mind when working with jquery mobile. It gave me a lot of headache

share|improve this answer

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.