I have the following code and it gives me the text but not the value. What is wrong and how do I fix it?

 function pageLoad() {
       $('#<%=dpEmploymentStatus.ClientID%>').change(function() {

       alert($('#<%=dpEmploymentStatus.ClientID%>' + ' option:selected').text());


       }).change();
   }
link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Use val() instead of text().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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