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

As the question says, how do I add a new option to a DropDownList using jQuery?

Thanks

share|improve this question

9 Answers

up vote 261 down vote accepted

Without using any extra plugins,

var myOptions = {
    val1 : 'text1',
    val2 : 'text2'
};
var mySelect = $('#mySelect');
$.each(myOptions, function(val, text) {
    mySelect.append(
        $('<option></option>').val(val).html(text)
    );
});

If you had lots of options, or this code needed to be run very frequently, then you should look into using a DocumentFragment instead of modifying the DOM many times unnecessarily. For only a handful of options, I'd say it's not worth it though.

share|improve this answer
6  
The method parameters are a bit misleading, the function(val, text) should be function(index, option) for example. Works well otherwise. – mbillard Jul 1 '10 at 20:15
9  
@Crossbrowser: I disagree - val and text actually describe the variables and their use. – nickf Jul 3 '10 at 0:34
1  
for that example only, however as a general purpose method, those variables are misleading (it gave me no clue how to use that method). However, I'll give that the answer was not about the use of the $.each method. – mbillard Jul 3 '10 at 2:20
1  
@Francisc tada! – nickf Apr 23 '12 at 17:53
1  
Awesome, Nick! [extra chars] – Francisc Apr 23 '12 at 21:05
show 5 more comments

With the plugin: jQuery Selection Box. You can do this:

var myOptions = {
        "Value 1" : "Text 1",
        "Value 2" : "Text 2",
        "Value 3" : "Text 3"
    }
    $("#myselect2").addOption(myOptions, false); 
share|improve this answer
this plugin works in IE9 – Roger Nov 16 '12 at 15:44

I use this useful plugin

share|improve this answer

With no plug-ins, this can be easier without using as much jQuery, instead going slightly more old-school:

var myOptions = {
    val1 : 'text1',
    val2 : 'text2'
};
$.each(myOptions, function(val, text) {
    $('#mySelect').append( new Option(text,val) );
});

If you want to specify whether or not the option a) is the default selected value, and b) should be selected now, you can pass in two more parameters:

    var defaultSelected = false;
    var nowSelected     = true;
    $('#mySelect').append( new Option(text,val,defaultSelected,nowSelected) );
share|improve this answer
1  
How do you set the properties like selecting a default value? – Krishnan Jun 15 '11 at 20:56
7  
I like this one better than the "<option></option>" method; that seems dirty. – Josh M. Mar 15 '12 at 18:36
elegant solution – Grumpy Oct 19 '12 at 0:44

U can use direct

$"(.ddlClassName").Html("<option selected=\"selected\" value=\"1\">1</option><option value=\"2\">2</option>")

-> Here u can use direct string

share|improve this answer

try this Function:

function addtoselect(param,value){
    $('#mySelectBox').append('&lt;option value='+value+'&gt;'+param+'&lt;/option&gt;');
}
share|improve this answer

Pease note @Phrogz's solution doesn't work in IE 8 while @nickf's works in all major browsers. Another approach is:

$.each(myOptions, function(val, text) {
    $("#mySelect").append($("&lt;option/&gt;").attr("value", val).text(text));
});
share|improve this answer

You may want to clear your DropDown first $('#DropDownQuality').empty();

I had my controller in MVC return a select list with only one item.

$('#DropDownQuality').append(
        $('<option></option>').val(data[0].Value).html(data[0].Text));    
share|improve this answer

And also, use .prepend() to add the option to the start of the options list. http://api.jquery.com/prepend/

share|improve this answer

protected by Community Jul 13 '11 at 15:11

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.