vote up 7 vote down star
4

Alright, say I have this:

<select id='list'>
<option value='1'>Option A</option>
<option value='2'>Option B</option>
<option value='3'>Option C</option>
</select>

What would the selector look like if I wanted to get "Option B" when I have the value '2'. Please note that this is not asking how to get the selected text value, but just any one of them, whether selected or not, depending on the value attribute. I tried:

$("#list[value='2']").text();

But it is not working.

flag

Gosh, looking back at this question is so embarrassing. :/ I plead temporary insanity. – Paolo Bergantino Jul 15 at 3:55
1  
Don't feel bad. I saw this question and thought, "Huh? Paolo?" :-) – Patrick McElhaney Jul 26 at 0:34

4 Answers

vote up 14 vote down check

It's looking for an element with id list which has a property value equal to 2. What you want is the option child of the list.

$("#list option[value='2']").text()
link|flag
vote up 3 vote down

Try the following:

$("#list option[value=2]").text();

The reason why your original snippet wasn't working is because your OPTION tags are children to your SELECT tag, which has the id list.

link|flag
vote up 1 vote down

$("#list option:selected").text();

link|flag
1  
this is to get the current selected option text, more details about this issue: marcgrabanski.com/article/… – Amr ElGarhy Jul 28 at 15:20
vote up 0 vote down

hi Gabejazz,

i use your code but it only get the first selected value, if i change the selector, it will always post the first selected value, any solution?

link|flag

Your Answer

Get an OpenID
or

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