vote up 7 vote down star

This gets the value of whatever is selected in my dropdown menu.

document.getElementById('newSkill').value

I cannot however find out what property to go after for the text that's currently displayed by the drop down menu. I tried "text" then looked at W3Schools but that didn't have the answer, does anybody here know?

For those not sure, here's the HTML for a drop down box.

<select name="newSkill" id="newSkill">
    <option value="1">A skill</option>
    <option value="2">Another skill</option>
    <option value="3">Yet another skill</option>
</select>

Thanks

flag

4 Answers

vote up 8 vote down check

Based on your example HTML code, here's one way to get the displayed text of the currently selected option:

var skillsSelect = document.getElementById("newSkill");
var selectedText = skillsSelect.options[skillsSelect.selectedIndex].text;
link|flag
For those late to the party, there were several suggestions but nobody noticed that they said .value where they should say .text, a confusing day for us all it was. – Teifion Sep 19 '08 at 10:59
vote up 0 vote down

This should return the text value of the selected value

var vSkill = document.getElementById('newSkill');

var vSkillText = vSkill.options[vSkill.selectedIndex].innerHTML;

alert(vSkillText);

Props: @Tanerax for reading the question, knowing what was asked and answering it before others figured it out.

Edit: DownModed, cause I actually read a question fully, and answered it, sad world it is.

link|flag
vote up 0 vote down
document.getElementById('newSkill').options[document.getElementById('newSkill').selectedIndex].value 

Should work

link|flag
vote up 0 vote down

Does this get the correct answer?

document.getElementById("newSkill").innerHTML
link|flag

Your Answer

Get an OpenID
or

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