vote up 6 vote down star
5

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

Thanks

flag

51% accept rate

3 Answers

vote up 21 vote down check

without using any extra plugins,

var myOptions = {
    val1 : 'text1',
    val2 : 'text2'
};
$.each(myOptions, function(val, text) {
    $('#mySelect').append(
        $('<option></option>').val(val).html(text)
    );
});
link|flag
works like a charm :) – flesh Nov 25 '08 at 12:17
vote up 1 vote down

I use this useful plugin

link|flag
vote up 6 vote down

jQuery Selection Box

var myOptions = {
        "Value 1" : "Text 1",
        "Value 2" : "Text 2",
        "Value 3" : "Text 3"
    }
    $("#myselect2").addOption(myOptions, false);
link|flag

Your Answer

Get an OpenID
or

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