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.


$("#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 theoptionvariable to have after that code runs? – nnnnnn Aug 30 '12 at 3:18