Check if option is selected with jQuery, if not select a default - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T07:29:14Z http://stackoverflow.com/feeds/question/149573 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/149573/check-if-option-is-selected-with-jquery-if-not-select-a-default 15 Check if option is selected with jQuery, if not select a default htxt 2008-09-29T16:47:31Z 2009-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#149592 2 Answer by Hank Gay for Check if option is selected with jQuery, if not select a default Hank Gay 2008-09-29T16:51:26Z 2008-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#149620 2 Answer by FlySwat for Check if option is selected with jQuery, if not select a default FlySwat 2008-09-29T16:57:01Z 2008-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#149820 19 Answer by Joe Lencioni for Check if option is selected with jQuery, if not select a default Joe Lencioni 2008-09-29T17:42:11Z 2008-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>&lt;select id="mySelect" multiple="multiple"&gt; &lt;option value="1"&gt;First&lt;/option&gt; &lt;option value="2"&gt;Second&lt;/option&gt; &lt;option value="3"&gt;Third&lt;/option&gt; &lt;option value="4"&gt;Fourth&lt;/option&gt; &lt;/select&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { if (!$("#mySelect option:selected").length) $("#mySelect option[value='3']").attr('selected', 'selected'); }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/149573/check-if-option-is-selected-with-jquery-if-not-select-a-default/149861#149861 2 Answer by Alex for Check if option is selected with jQuery, if not select a default Alex 2008-09-29T17:51:55Z 2008-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#149934 1 Answer by htxt for Check if option is selected with jQuery, if not select a default htxt 2008-09-29T18:06:40Z 2008-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#1649507 1 Answer by sata for Check if option is selected with jQuery, if not select a default sata 2009-10-30T12:25:17Z 2009-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 -1 Answer by Joel for Check if option is selected with jQuery, if not select a default Joel 2009-10-30T21:38:08Z 2009-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#1684615 0 Answer by Rick O'Shay for Check if option is selected with jQuery, if not select a default Rick O'Shay 2009-11-06T00:27:57Z 2009-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 -1 Answer by giagejoe for Check if option is selected with jQuery, if not select a default giagejoe 2009-12-04T16:03:08Z 2009-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#1848078 0 Answer by Labuschin for Check if option is selected with jQuery, if not select a default Labuschin 2009-12-04T16:27:10Z 2009-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#1873462 2 Answer by Ram Prasad for Check if option is selected with jQuery, if not select a default Ram Prasad 2009-12-09T11:59:56Z 2009-12-09T11:59:56Z $(document).ready(function() { if (!$("#mySelect option:selected").length) $("#mySelect").val( 3 ); });