Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In jQuery I have a dropdown called #selected_studio. In that drop one I have a <option> with value="studio_17 and says Testing... if you look at the drop down in the browser. I want to read the "Testing..." text no matter if selected or not, just by knowing the value. I attempted to write some JS but it failed and not sure how it should be.

$("#selected_studio option:studio_17").text();

Any ideas on how to do this? I think it's possible. I'm using jQuery 1.7 if that's any helpful.

The full HTML:

<select id="selected_studio">
      <option value="me">Kevin</option>
      <option value="studio_17">Testing...</option>
      <option value="null" disabled="disabled">------------------------</option>
      <option value="new_studio">Studio Application</option>
</select>
share|improve this question

3 Answers

up vote 5 down vote accepted

Try this:

$("#selected_studio option[value='studio_17']").text();

This uses the attribute equals selector.

share|improve this answer
$("#selected_studio option[value='studio_17']").text();
share|improve this answer

Use an attribute selector:

$("#selected_studio option[value='studio_17']").text();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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