up vote 131 down vote favorite
26
share [g+] share [fb]

How can I get an asp dropdownlist selected text in Jquery, not using selected value?

link|improve this question

feedback

6 Answers

up vote 238 down vote accepted
$("#yourdropdownid option:selected").text();
link|improve this answer
5  
$("#yourdropdownid option").is("selected").text() is a bit more optimized way, and $("#yourdropdownid").children("option").is("selected").text() is the fastest. – DT3 Nov 26 '11 at 20:36
feedback

Try this:

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

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

$("[id*='MyDropDownId'] :selected")
link|improve this answer
feedback
$("option:selected", $("#TipoRecorde")).text()
link|improve this answer
feedback

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

link|improve this answer
1  
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
feedback
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.

link|improve this answer
-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
feedback
IHTMLElementCollection Options = (IHTMLElementCollection)droplist.getElementsByTagName("option");
bool Flag = false;
int x = 0;
foreach (HTMLOptionElement Option in Options)
{
    x++;
    if (Flag)
    {
        Option.selected = true;
        break;
    }
    if(x==1)
    Flag = true; 
}
link|improve this answer
Marked this answer as -1 because the question is about jQuery. Plus, I'm not sure what your code is trying to do. The question wants to get the selected value. Your code will set the option to be selected. – Peter Nov 28 '11 at 14:45
feedback

Your Answer

 
or
required, but never shown

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