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

How do I get the selected value from a dropdown list in ASP.NET using JavaScript?

I have tried the methods below, but each of them only returns the selected index instead of the value.

var as = document.form1.ddlViewBy.value;

var e = document.getElementById("ddlViewBy");

var strUser = e.options[e.selectedIndex].value;
share|improve this question
3  
What's the point of showing us as here? – Artem Russakovskii Jul 6 '09 at 7:27
The last line in your code seems to work fine. Then what's the problem – rahul Jul 6 '09 at 7:29
1  
i want the selected value of the dropdownlist but two methods above only return me the index...not the value!! U got me? – Danferd Jul 6 '09 at 7:31
Please post your HTML code and JavaScript. – rahul Jul 6 '09 at 7:33

10 Answers

up vote 420 down vote accepted

If you have a select element that looks like this:

<select id="ddlViewBy">
<option value="1">test1</option>
<option value="2" selected="selected">test2</option>
<option value="3">test3</option>
</select>

Running this code:

var e = document.getElementById("ddlViewBy");
var strUser = e.options[e.selectedIndex].value;

Would make strUser be 2. If what you actually want is test2, then do this:

var e = document.getElementById("ddlViewBy");
var strUser = e.options[e.selectedIndex].text;

Which would make strUser be test2

share|improve this answer
4  
This is what i want! Thank you so much! – Danferd Jul 6 '09 at 7:36
1  
Thanks so much for this. You've saved my sanity! :) – John Gallagher Sep 22 '11 at 13:01
Thanks, good snippet. – Anvar Oct 6 '11 at 19:25
thanks paolo, I searched web about this problem and found your great answer, nicely done! – Ali_dotNet Dec 9 '11 at 12:47
var strUser = e.options[e.selectedIndex].value;

This is correct and should give you the value. Is it the text you're after?

var strUser = e.options[e.selectedIndex].text;

So you're clear on the terminology:

<select>
    <option value="hello">Hello World</option>
</select>

This option has:

  • Index = 0
  • Value = hello
  • Text = Hello World
share|improve this answer
i thought the ".value" in javascript should returns the value for me but only the ".text" would returns as what the .SelectedValue in asp.net returns. Thanks for example given! – Danferd Jul 6 '09 at 7:56

With jQuery:

$("#ddlViewBy").text() //the text content of the selected option
$("#ddlViewBy").val() //the value of the selected option
share|improve this answer

When in doubt, open up Firebug, enable its Console (tab), and start typing in JavaScript code.

What Firebug spits back at you will be the values of expressions you put in. This process will teach you way more than you can imagine.

share|improve this answer
10  
You can do the same thing in Chrome (Developer>Javascript Console) and IE8 (Developer Tools>Script>Console) – Keith Jul 6 '09 at 7:37

Following codes exhibits various examples related to Getting/Putting of values from Input/Select Fields using Javascript

Working DEMO

 <select id="Ultra" onchange="run()">  <!--Call run() function-->
     <option value="0">Select</option>
     <option value="8">text1</option>
     <option value="5">text2</option>
     <option value="4">text3</option>     
</select><br><br>
TextBox1<br>
<input type="text" id="srt" placeholder="get value on option select"><br>
TextBox2<br>
<input type="text" id="rtt"  placeholder="Write Something !" onkeyup="up()">

Following script getting value of selected option and putting in text box 1

<script>
 function run() {
     document.getElementById("srt").value = document.getElementById("Ultra").value;
 }
 </script>

Following script getting value from a text box 2 and alerting with its value

<script>
 function up() {
    //if (document.getElementById("srt").value != "") {
        var dop = document.getElementById("srt").value;
    //}
    alert(dop);
   }
</script>

Following script Calling function from a function

<script>
 function up() {
    var dop = document.getElementById("srt").value;
    pop(dop); // Calling Function pop

   }

  function pop(val) {
    alert(val);
   }​
</script>
share|improve this answer

If you ever run across code written purely for IE you might see this:

var e = document.getElementById("ddlViewBy"); 
var strUser = e.options(e.selectedIndex).value; 

Running the above in Firefox et al will give you an 'is not a function' error because IE allows you to get away with using () instead of []:

var e = document.getElementById("ddlViewBy");    
var strUser = e.options[e.selectedIndex].value; 

The correct way is to use square brackets.

share|improve this answer

Beginners are likely to want to access values from a select with the NAME attribute rather than ID attribute. We know all form elements need names, even before they get ids.

So, I'm adding the getElementByName() solution just for new developers to see too.

NB. names for form elements will need to be unique for your form to be usable once posted, but the DOM can allow a name be shared by more than one element. For that reason consider adding IDs to forms if you can, or be explicit with form element names my_nth_select_named_x and my_nth_text_input_named_y.

Example using getElementMyName
var e = document.getElementByName("my_select_with_name_ddlViewBy");
var strUser = e.options[e.selectedIndex].value;

share|improve this answer

The only reason I can see that makes this code not work is if you're using IE7-, and forgot to specify the value attribute for your <option>-tags... Every other browser should convert what's inside open-close tags as the option value.

share|improve this answer

I'm like to use a DextOr solution:

http:// jsfiddle.net/ipsjolly/wnmcL/2/

There is a way to get Text of Dropdown instead Value?

TKS to all

share|improve this answer
    <html>
        <head>
            <script type="text/javascript">
                function validate()
                {
                    var e = document.getElementById("dd_date");
                    var dd = e.options[e.selectedIndex].value;
                    var d = document.getElementById("dd_month");
                    var mm = d.options[d.selectedIndex].value;
                    var i = document.getElementById("dd_year");
                    var yy = i.options[i.selectedIndex].value;
                    var cal=dd+"-"+mm+"-"+yy;
                    alert("The DOB is"+cal);
                }

                document.write("dd:");

                document.write("<select id=dd_date >");
                var date;
                for (date=1;date<=31;date++) {
                    document.write("<option>" + date + "</option>");
                }
                document.write("</select >");
                document.write("month:");

                document.write("<select id=dd_month>");
                var month;
                for (month=1;month<=12;month++) {
                    document.write("<option>" + month + "</option>");
                }
                document.write("</select >");
                document.write("year:");

                document.write("<select id=dd_year>");
                var year;
                for (year=1980;year<=2009;year++) {
                    document.write("<option>" + year + "</option>");
                }
                document.write("</select >");
            </script>
        </head>

        <body>
            <form name=form1 action="" method="post">
            <input type="submit" value="Submit" onClick="validate();">
            </form>
        </body>
    </html>
share|improve this answer
1  
The HTML is not well formed; the "body" tag is inside the "head" and there is not ending "body" tag. – Peter Mortensen May 25 '11 at 8:25

protected by Community Oct 21 '11 at 10:45

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.