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.

I have the following Element:

<select id="color" name="colorId" class="btn secondary">
    <option value="347366" selected="selected">Purple</option>
    <option value="56634">White</option>
</select>

And I want to find which option is selected:

The following give me only the default:

document.querySelector('#color option[selected="selected"]')

(I know how to do it with JQuery but, I can't use JQeury or any other similar library)

share|improve this question
Can you use the normal DOM, ie document.getElementById('color'), or do you have to use css-selectors? – Burhan Khalid Jan 15 at 8:36
I can use both, does it matter? – Guy Korland Jan 15 at 21:11

4 Answers

up vote 3 down vote accepted

In plain javascript:

var select = document.getElementById('color');
var currentOpt = select.options[select.selectedIndex]; 

JsBin example: http://jsbin.com/ogunet/1/edit (open your js console)

share|improve this answer
I think Guy wants to know if there is a way to do it using css-selectors. – Burhan Khalid Jan 15 at 8:37

Grab the <select> DOM element using getElementById() and take its parameter selectedIndex:

var select = document.getElementById( 'color' ),
    selIndex = select.selectedIndex;,
    selElement = select.getElementsByTagName( 'option' )[ selIndex ];
share|improve this answer

This will return selected option value and text both.. Hope this will work for u ..

Cheers

var elt = document.getElementById('color');

 // get option selected
    var option = elt.options[elt.selectedIndex].value;
    var optionText = elt.options[elt.selectedIndex].text;
share|improve this answer

Fabricio Calderan's answer is correct: you'll have to use the selectedIndex property. There is no selector to get the selected option-node in one go in the standard selectors-API.

But then again, there might be room for improvement. Currently, you can use querySelectorAll to get all option-nodes from any given select element (document.querySelectorAll('#selectId>option'), so you could suggest document.querySelectorAll('#selectID>option:selected') to return a reference to the selected option... but that's something for the mailing lists

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.