vote up 14 vote down star
3

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 :)

flag

77% accept rate

11 Answers

vote up 17 vote down check

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>
link|flag
1  
The selection would be easier to read like this: $("#mySelect").val(3); – Jørn Schou-Rode yesterday
vote up 0 vote down
$(document).ready(function() { if (!$("#mySelect option:selected").length) $("#mySelect").val( 3 ); });
link|flag
vote up 0 vote down

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

Unobtrusive JavaScript

link|flag
vote up -1 vote down

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

$("#mySelect").val( 3 );
link|flag
This is selecting option 3 regardless if another option is already selected. – Jordan Ryan Moore Dec 4 at 16:06
vote up 0 vote down

No need to use jQuery for this:

Also, no need to use C# or Java because you can write the same thing in assembly language.

link|flag
vote up -1 vote down

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

$(".Result").html($("option:selected").text());

link|flag
vote up 1 vote down

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');	
}
link|flag
vote up 1 vote down

Thanks, lencioni's code looks like a good way to do it.

In the meantime 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");
    }
});
link|flag
vote up 2 vote down

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.

link|flag
vote up 1 vote down

No need to use jQuery for this:

var foo = document.getElementById('yourSelect');
if (foo)
{
   if (foo.selectedIndex != null)
   {
       foo.selectedIndex = 0;
   } 
}
link|flag
3  
The OP stated, "Using jQuery ..." so it seems superfluous to ignore that, no? – BryanH Jul 4 at 6:07
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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