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

Using jQuery, how do you check if there is an option selected in a select menu, and if not, assign one of the options as selected.

(The select is generated with a maze of PHP functions in an app I just inherited, so this is a quick fix while I get my head around those :)

share|improve this question
1  

12 Answers

up vote 195 down vote accepted

While I'm not sure about exactly what you want to accomplish, this bit of code worked for me.

<select id="mySelect" multiple="multiple">
  <option value="1">First</option>
  <option value="2">Second</option>
  <option value="3">Third</option>
  <option value="4">Fourth</option>
</select>

<script type="text/javascript">	
$(document).ready(function() {
  if (!$("#mySelect option:selected").length)
    $("#mySelect option[value='3']").attr('selected', 'selected');
});
</script>
share|improve this answer
75  
The selection would be easier to read like this: $("#mySelect").val(3); – Jørn Schou-Rode Dec 9 '09 at 12:07
4  
This got me on the right track, but I needed to do this: $("#mySelect option")[2]['selected'] = true; Figured that out after investigating the object structures in Firebug. – semperos Aug 12 '10 at 21:08
20  
As of jQuery 1.6 you can set the property directly. $("#mySelect").prop("selectedIndex", 2) – gradbot May 16 '11 at 1:31
The .val(x) version does not work in Internet Explorer 8, so @gradbot has it right, as this works in all Browsers. – Sorcy Jul 18 '12 at 11:15

No need to use jQuery for this:

var foo = document.getElementById('yourSelect');
if (foo)
{
   if (foo.selectedIndex != null)
   {
       foo.selectedIndex = 0;
   } 
}
share|improve this answer
37  
The OP stated, "Using jQuery ..." so it seems superfluous to ignore that, no? – BryanH Jul 4 '09 at 6:07
8  
Sometimes jQuery isn't the right tool. – gradbot May 16 '11 at 1:32
8  
Personally, if I ask a specific question, I would like to get the answer for the question instead of a different way. – Vittorio Vittori Jun 22 '11 at 0:02
5  
Sometimes the answer you seek is not the one you expect. – MrBoJangles Jul 22 '11 at 16:04
3  
Regardless, he asked for jQuery, and the jQuery answer is quite a bit easier to understand, especially if one does not understand base JavaScript. – shmeeps Jul 22 '11 at 16:29
show 1 more comment

lencioni's answer is what I'd recommend. You can change the selector for the option ('#mySelect option:last') to select the option with a specific value using "#mySelect option[value='yourDefaultValue']". More on selectors.

If you're working extensively with select lists on the client check out this plugin: http://www.texotela.co.uk/code/jquery/select/. Take a look the source if you want to see some more examples of working with select lists.

share|improve this answer

Here is my function changing the selected option. It works for jQuery 1.3.2

function selectOption(select_id, option_val) {
    $('#'+select_id+' option:selected').removeAttr('selected');
    $('#'+select_id+' option[value='+option_val+']').attr('selected','selected');	
}
share|improve this answer
<script type="text/javascript"> 
$(document).ready(function() {
  if (!$("#mySelect option:selected").length)
   $("#mySelect").val( 3 );

});
</script>
share|improve this answer

Look at the selectedIndex of the select element. BTW, that's a plain ol' DOM thing, not JQuery-specific.

share|improve this answer

I already came across the texotela plugin mentioned, which let me solve it like this:

$(document).ready(function(){
    if ( $("#context").selectedValues() == false) {
    $("#context").selectOptions("71");
    }
});
share|improve this answer

You guys are doing way too much for selecting. Just select by value:

$("#mySelect").val( 3 );
share|improve this answer
1  
This is selecting option 3 regardless if another option is already selected. – Jordan Ryan Moore Dec 4 '09 at 16:06

Easy! The default should be the first option. Done! That would lead you to unobtrusive JavaScript, because JavaScript isn't needed :)

Unobtrusive JavaScript

share|improve this answer

This was a quick script I found that worked... .Result is assigned to a label.

$(".Result").html($("option:selected").text());
share|improve this answer
$("#select_box_id").children()[1].selected

This is another way of checking an option is selected or not in jquery. This will return Boolean (True or False).

[1] is index of select box option

share|improve this answer
$("option[value*='2']").attr('selected', 'selected');
// 2 for example, add * for every option
share|improve this answer
1  
This is really a comment, not an answer to the question. You can always comment on your own posts, and once you have sufficient reputation you will be able to comment on any post. – Pratik Aug 21 '12 at 11:01

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.