Check if option is selected with jQuery, if not select a default - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T07:29:14Zhttp://stackoverflow.com/feeds/question/149573http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/149573/check-if-option-is-selected-with-jquery-if-not-select-a-default15Check if option is selected with jQuery, if not select a defaulthtxt2008-09-29T16:47:31Z2009-12-09T11:59:56Z
<p>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.</p>
<p>(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 :)</p>
http://stackoverflow.com/questions/149573/check-if-option-is-selected-with-jquery-if-not-select-a-default/149592#1495922Answer by Hank Gay for Check if option is selected with jQuery, if not select a defaultHank Gay2008-09-29T16:51:26Z2008-09-29T16:51:26Z<p>Look at the <a href="http://www.w3schools.com/htmldom/prop_select_selectedindex.asp" rel="nofollow">selectedIndex</a> of the <code>select</code> element. BTW, that's a plain ol' DOM thing, not JQuery-specific.</p>
http://stackoverflow.com/questions/149573/check-if-option-is-selected-with-jquery-if-not-select-a-default/149620#1496202Answer by FlySwat for Check if option is selected with jQuery, if not select a defaultFlySwat2008-09-29T16:57:01Z2008-09-29T16:57:01Z<p>No need to use jQuery for this:</p>
<pre><code>var foo = document.getElementById('yourSelect');
if (foo)
{
if (foo.selectedIndex != null)
{
foo.selectedIndex = 0;
}
}
</code></pre>
http://stackoverflow.com/questions/149573/check-if-option-is-selected-with-jquery-if-not-select-a-default/149820#14982019Answer by Joe Lencioni for Check if option is selected with jQuery, if not select a defaultJoe Lencioni2008-09-29T17:42:11Z2008-09-29T18:06:48Z<p>While I'm not sure about exactly what you want to accomplish, this bit of code worked for me.</p>
<pre><code><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>
</code></pre>
http://stackoverflow.com/questions/149573/check-if-option-is-selected-with-jquery-if-not-select-a-default/149861#1498612Answer by Alex for Check if option is selected with jQuery, if not select a defaultAlex2008-09-29T17:51:55Z2008-09-29T18:04:56Z<p>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']". <a href="http://docs.jquery.com/Selectors" rel="nofollow" title="More selectors">More on selectors</a>.</p>
<p>If you're working extensively with select lists on the client check out this plugin:
<a href="http://www.texotela.co.uk/code/jquery/select/" rel="nofollow">http://www.texotela.co.uk/code/jquery/select/</a> Take a look the source if you want to see some more examples of working with select lists.</p>
http://stackoverflow.com/questions/149573/check-if-option-is-selected-with-jquery-if-not-select-a-default/149934#1499341Answer by htxt for Check if option is selected with jQuery, if not select a defaulthtxt2008-09-29T18:06:40Z2008-09-29T18:06:40Z<p>Thanks, lencioni's code looks like a good way to do it.</p>
<p>In the meantime I already came across the <a href="http://www.texotela.co.uk/code/jquery/select/" rel="nofollow">texotela plugin</a> mentioned, which let me solve it like this:</p>
<pre><code>$(document).ready(function(){
if ( $("#context").selectedValues() == false) {
$("#context").selectOptions("71");
}
});
</code></pre>
http://stackoverflow.com/questions/149573/check-if-option-is-selected-with-jquery-if-not-select-a-default/1649507#16495071Answer by sata for Check if option is selected with jQuery, if not select a defaultsata2009-10-30T12:25:17Z2009-10-30T12:25:17Z<p>Here is my function changing the selected option. It works for jQuery 1.3.2</p>
<pre><code>function selectOption(select_id, option_val) {
$('#'+select_id+' option:selected').removeAttr('selected');
$('#'+select_id+' option[value='+option_val+']').attr('selected','selected');
}
</code></pre>
http://stackoverflow.com/questions/149573/check-if-option-is-selected-with-jquery-if-not-select-a-default/1652471#1652471-1Answer by Joel for Check if option is selected with jQuery, if not select a defaultJoel2009-10-30T21:38:08Z2009-10-30T21:38:08Z<p>This was a quick script I found that worked...
.Result is assigned to a label.</p>
<p>$(".Result").html($("option:selected").text());</p>
http://stackoverflow.com/questions/149573/check-if-option-is-selected-with-jquery-if-not-select-a-default/1684615#16846150Answer by Rick O'Shay for Check if option is selected with jQuery, if not select a defaultRick O'Shay2009-11-06T00:27:57Z2009-11-06T00:27:57Z<blockquote>
<blockquote>
<p>No need to use jQuery for this:</p>
</blockquote>
</blockquote>
<p>Also, no need to use C# or Java because you can write the same thing in assembly language. </p>
http://stackoverflow.com/questions/149573/check-if-option-is-selected-with-jquery-if-not-select-a-default/1847923#1847923-1Answer by giagejoe for Check if option is selected with jQuery, if not select a defaultgiagejoe2009-12-04T16:03:08Z2009-12-04T16:03:08Z<p>You guys are doing way too much for selecting. Just select by value:</p>
<pre><code>$("#mySelect").val( 3 );
</code></pre>
http://stackoverflow.com/questions/149573/check-if-option-is-selected-with-jquery-if-not-select-a-default/1848078#18480780Answer by Labuschin for Check if option is selected with jQuery, if not select a defaultLabuschin2009-12-04T16:27:10Z2009-12-04T16:27:10Z<p><strong>Easy!</strong> The default should be the first option. <strong>Done!</strong> That would lead you to unobtrusive javascript, because javascript isn't needed :)</p>
<p><a href="http://en.wikipedia.org/wiki/Unobtrusive%5FJavaScript" rel="nofollow">Unobtrusive JavaScript</a></p>
http://stackoverflow.com/questions/149573/check-if-option-is-selected-with-jquery-if-not-select-a-default/1873462#18734622Answer by Ram Prasad for Check if option is selected with jQuery, if not select a defaultRam Prasad2009-12-09T11:59:56Z2009-12-09T11:59:56Z
$(document).ready(function() {
if (!$("#mySelect option:selected").length)
$("#mySelect").val( 3 );
});