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 this select tag right here

<select id = "options" style = "width:150px;">      
    <option>Artist Name</option>
    <option>Track Name</option>
    <option>Date Uploaded</option>
</select>

I am getting the current selected innerHTML value using JQuery

   var option = $("#options").innerHTML;
   console.log(option);

But each time I print it only returns me a value of undefined.

share|improve this question
1  
Your code $("#options").innerHTML, though it doesn't work, implies you are trying to get the html of all of the option elements at once. But your comment "I am getting the current selected innerHTML value" sounds like you want to get the value property of the selected option element. Could you make your desired result a bit clearer? What value do you want the option variable to have after that code runs? – nnnnnn Aug 30 '12 at 3:18

3 Answers

up vote 2 down vote accepted

You just need:

$("#options").val();
share|improve this answer
Oh shoot! I was doing $("#options").val . looks like it is returning the whole JQuery object value. lol – KyelJmD Aug 30 '12 at 3:12

jQuery object doesn't have the innerHTML property, which belongs to the html dom element object.

var option = $("#options option:selected").html();
console.log(option);
share|improve this answer
<form>
<select id = "options" style = "width:150px;">      
    <option>Artist Name</option>
    <option>Track Name</option>
    <option>Date Uploaded</option>
</select>
<input type="text" id="optionstext"/>
<input type="text" id="optionshtml"/>
</form>

    $('#options').change(function(){

        $('#optionstext').val($('#options').text());
        $('#optionshtml').val($('#options').html());

    });

http://jsfiddle.net/pKsC8/8/
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.