Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I get an ASP dropdownlist selected text in jQuery, not using the selected value?

share|improve this question

10 Answers

up vote 821 down vote accepted
$("#yourdropdownid option:selected").text();
share|improve this answer
81  
$("#yourdropdownid option").is("selected").text() is a bit more optimized way, and $("#yourdropdownid").children("option").is("selected").text() is the fastest. – Jack B. Nov 26 '11 at 20:36
46  
I think this should be $("#yourdropdownid").children("option").filter(":selected").text() since is() returns a boolean of whether the object matches the selector or not. – MHollis May 18 '12 at 14:04
10  
I second the comment about is() returning a boolen; alternatively, use the following small alteration: $('#yourdropdownid').children("option:selected").text(); – scubbo Jun 12 '12 at 14:56
6  
@DT3 tested is("selected").text() returns a TypeError: Object false has no method 'text' – ianace Oct 19 '12 at 7:20
4  
$('select').children(':selected') is the fastest way: jsperf.com/get-selected-option-text – Simon Apr 24 at 13:51
show 2 more comments

Try this:

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

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

$("[id*='MyDropDownId'] :selected")
share|improve this answer

Just in case this helps anyone -- The answers posted above e.g.

$('#yourdropdownid option:selected').text();

didn't work for me, but this did:

$('#yourdropdownid').find('option:selected').text();

Possibly an older version of jquery?

share|improve this answer
The other answer works with the latest version of Jquery. – Doomsknight Apr 4 '12 at 15:29
1  
Don't be hating on this answer. Using the "find" keyword did the trick for me. I was coming from a completely different context. – ROFLwTIME Aug 6 '12 at 13:50
you don't need the option part at all as its implied with selected.. simply using $('#yourdropdownid :selected').text(); will work fine – Dss Jan 17 at 18:52

$("#DropDownID").val() will give the selected index value.

share|improve this answer
12  
Not exactly the answer to the question, but was useful for me. The question wants the selected text. – Peter Nov 28 '11 at 14:50
thanks this answer helped me as i was looking for ID only. – Pranav Apr 5 '12 at 10:03
6  
This answer is incorrect for the question – Frankston Ralphington III Sep 21 '12 at 6:42
$("option:selected", $("#TipoRecorde")).text()
share|improve this answer

If you already have the dropdownlist available in a variable, this is what works for me:

$("option:selected", myVar).text()

The other answers on this question helped me, but ultimately the following thread helped the most:

jquery forum

share|improve this answer

For the text of the selected item.

 $('select[name="thegivenname"] option:selected').text();

For the value of the selected item.

$('select[name="thegivenname"] option:selected').val();
share|improve this answer

If you want a jQuery library to do this and other form tasks, I can impartially* recommend jQuery Extensions.

* not that impartial, I'm the author

share|improve this answer
var someName = "Test";

$("#<%= ddltest.ClientID %>").each(function () {
    $('option', this).each(function () {
        if ($(this).text().toLowerCase() == someName) {
            $(this).attr('selected', 'selected')
        };
    });
});

That will help you to get right direction. Above code is fully tested if you need further help let me know.

share|improve this answer
2  
-1: This answers the wrong question. The OP asked how to GET the selected text, not SET by the text. Also, there is no need to have the outer "each" function since selecting by id (#...) implies you'll only ever get a single element. – Joel Beckham Nov 11 '11 at 17:36
$("select[id=yourDropdownid] option:selected").text()

This works fine

share|improve this answer

protected by Community Mar 3 '12 at 17:55

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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