vote up 0 vote down star

hello,

How can I get asp dropdownlist selected text in Jquery, not selected value/

flag

3 Answers

vote up 1 vote down check
$("#yourdropdownid option:selected").text();
link|flag
vote up 5 vote down

Try this:

$("#myselect :selected").text();

For an ASP.NET dropdown you can use the following selector:

$("[id*='MyDropDownId'] :selected")
link|flag
vote up 0 vote down

Also, should your dropdownlist have a size of 1 (one), meaning it only displays one thing at a time, you can just use:

$("#dropdownlistID").text();

However, the answer provided by phoenix is the sure-fire way.

link|flag

Your Answer

Get an OpenID
or

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