vote up 4 vote down star

Take the below HTML select for an example:

<select name="selValues" id="selValues">
    <option value="1">One</option>
    <option value="2">Two</option>
    <option value="3">5</option>
    <option value="4">3</option>
</select>

If we write the following jQuery statement:

$('#selValues').val('2'); // Two will get selected
$('#selValues').val('3'); // 3 will get selected instead of 5??

Why is it like that?

flag

50% accept rate
1  
Post this as a bug over at jquery.com – Marius Oct 21 at 7:34
2  
It's not a bug, it's a feature, as I explained in my answer. – Michał Kwiatkowski Oct 21 at 7:48

3 Answers

vote up 2 vote down

When selecting options jQuery looks first at the value then at the text of an option. It also goes through options in order. So, $('#selValues').val('3') selects options 3 first, but right after that changes selection to option 4 (as it has the text "3"). Use a multiple select to see that in fact both options are selected

<select name="selValues" id="selValues" multiple="multiple">
    <option value="1">One</option>
    <option value="2">Two</option>
    <option value="3">5</option>
    <option value="4">3</option>
</select>
link|flag
You are right .. but it doesn't solve my issue .. If I specify the value in the selector it will work. '#selValues option[value="3"]' But if the value that I am trying to select is not present in the list, then no item should be selected. This doesn't happen with jQuery but happens with normal JavaScript if I just write: $('#selValues')[0].value = <Value Here>; – Zuhaib Oct 30 at 6:36
vote up 2 vote down

Use

$("#selValues option[value='3']").attr('selected', 'selected');

Also a good article on

jQuery - Select elements - tips and tricks

link|flag
Yes that statement would work, I know that. But if the value you are trying to select is not present in the list, then the selected value should change to -1 (no items selected). But it doesn't happen with this statement. – Zuhaib Oct 29 at 14:30
vote up 0 vote down

The val() method gets or sets the selected text. You may want to use selectedIndex instead:

$('#selValues').get(0).selectedIndex=2;
link|flag

Your Answer

Get an OpenID
or

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