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

What is the best method for adding options to a select from a JSON object using jQuery?

I'm looking for something that I don't need a plugin to do, but would also be interested in the plugins that are out there.

This is what I did:

selectValues = { "1": "test 1", "2": "test 2" };

for (key in selectValues) {
  if (typeof (selectValues[key] == 'string') {
    $('#mySelect').append('<option value="' + key + '">' + selectValues[key] + '</option>');
  }
}

A clean/simple solution:

This is a cleaned up and simplified version of matdumsa's:

$.each(selectValues, function(key, value) {   
     $('#mySelect')
          .append($('<option>', { value : key })
          .text(value)); 
});

Changes from matdumsa's: (1) removed the close tag for the option inside append() and (2) moved the properties/attributes into an map as the second parameter of append().

share|improve this question
2  
maybe of help: texotela.co.uk/code/jquery/select (it was a help for me after i stumbled upon this question) – ManBugra May 31 '11 at 16:36
1  
I had trouble with texotela. It's ok, and worked passing the array, but it was buggy adding single options in a loop. I also needed a 'remove all but first' which it wasn't able to do cleanly. So I went with the jquery above. – goodeye Jul 20 '11 at 20:34
1  
The cleaned up version listed above only works in Jquery 1.4+. For older versions use the one in matdumsa's answer – Thedric Walker Aug 25 '11 at 19:22
I had trouble getting the value with elem.val(). I always ended up with text contents. matdumsa version worked better in this way. – anttir Apr 5 '12 at 8:34

21 Answers

up vote 382 down vote accepted

Same as other answers, in jQuery fashion:

$.each(selectValues, function(key, value) {   
     $('#mySelect')
         .append($("<option></option>")
         .attr("value",key)
         .text(value)); 
});
share|improve this answer
3  
Does not work in Safari 3.2. – zgoda Feb 20 '09 at 11:15
41  
this is not the "best" way. the best (faster) way is to contruct the html output (ie. join an array into a string) then set the innerHTML of the select element. $('#mySelect').html(optionString) – gpilotino Nov 5 '09 at 19:30
10  
the innertHTML trick does not work on IE!!!! – user27478 Mar 8 '10 at 19:37
15  
This is the only solution I tried that also worked in IE. Note you can use $('#mySelect').empty() if you want to clear all the options first. – user27478 Mar 8 '10 at 21:35
25  
@gpilotino - Your method doesn't encode the values like this does, and is unsafe against XSS attacks as well, so it's a trade-off going your route...I prefer not having to worry that one day a value with a quote in it will break the page :) – Nick Craver Mar 20 '10 at 14:00
show 12 more comments
var output = [];

$.each(selectValues, function(key, value)
{
  output.push('<option value="'+ key +'">'+ value +'</option>');
});

$('#mySelect').html(output.join(''));

In this way you "touch the DOM" only one time.

I'm not sure if the latest line can be converted into $('#mySelect').html(output.join('')) because I don't know jquery internals (maybe it does some parsing in the html() method)

share|improve this answer
5  
You method is obviously the faster one than the 'correct' answer above since it uses less jQuery too. – Thorpe Obazee Nov 9 '09 at 7:04
1  
Can you explain what the get(0) is? I tried looking in the documentation of jQuery but just can't find it :( – AntonioCS Nov 25 '09 at 12:23
4  
the line "$('#mySelect').get(0).innerHTML = output.join('');" works in Chrome and FF3.x but not in IE7 as far as I can tell – blu Jan 6 '10 at 4:46
11  
This breaks if the key has some quotes or >, < in it. – nickf Jan 19 '10 at 12:03
2  
One small improvement is to concatenate using the join rather than the plus sign, like so: output.push('<option value="', key, '">', value, '</option>'); – MM. Apr 8 '12 at 17:36
show 4 more comments

This should be like an answer, but it is slightly faster and cleaner.

$.each(selectValues, function(key, value) {
    $('#mySelect').append($("<option/>", {
        value: key,
        text: value
    }));
});
share|improve this answer
Worked perfectly. Thanks! – Andrew Ellis Dec 27 '11 at 19:14
Perfect. To add on it, additional attributes for the select could be added. $.each(selectValues, function(id,value,text) { $('#mySelect').append($("<option/>", { id: id value: value, text: text })); }); – kodi Apr 10 at 4:22
2  
It think it will be a better idea to cache ` $('#mySelect')` , so that you look up only once before the loop. Currently it is searching the DOM for the element for every single option . – Sushanth -- May 9 at 21:23

jQuery

var list = $("#selectList");
$.each(items, function(index, item) {
  list.append(new Option(item.text, item.value));
});

pure javascript

var list = document.getElementById("selectList");
for(var i in items) {
  list.add(new Option(items[i].text, items[i].value));
}
share|improve this answer
2  
Never heard of the Option object before. Is that built into all browsers? – Darryl Hein Jun 1 '11 at 4:06
1  
1  
I tried using new Option, but found that it didn't work in IE6 & 7. I don't have a reason why, but many of the full jQuery options worked. – Darryl Hein Jul 21 '11 at 1:36
1  
wouldnt this be the fastest way? – ghostCoder Oct 3 '11 at 16:01
2  
First method does not work in IE8. – simon Apr 11 '12 at 8:50
show 2 more comments

Using DOM Elements Creator plugin (my favorite):

$.create('option', {'value': 'val'}, 'myText').appendTo('#mySelect');

Using the Option constructor (not sure about browser support):

$(new Option('myText', 'val')).appendTo('#mySelect');

Using document.createElement (avoiding extra work parsing HTML with $("<option></option>")):

$('#mySelect').append($(document.createElement("option")).
                        attr("value","val").text("myText"));
share|improve this answer
2  
+1 for document.createElement() alternative. – trebormf Mar 16 '11 at 15:51

This looks nicer, provides readability, but is slower than other methods.

$.each(selectData, function(i, option)
{
    $("<option/>").val(option.id).text(option.title).appendTo("#selectBox");
});

If you want speed, the fastest (tested!) way is this, using array, not string concatenation, and using only one append call.

auxArr = [];
$.each(selectData, function(i, option)
{
    auxArr[i] = "<option value='" + option.id + "'>" + option.title + "</option>";
});

$('#selectBox').append(auxArr.join(''));
share|improve this answer
 var output = [];
 var length = data.length;
 for(var i=0; i < length; i++)
 {
    output[i++] = '<option value="'+ data[i].start +'">'+ data[i].start +'</option>';
 }

 $('#choose_schedule').get(0).innerHTML = output.join('');

I've done a few tests and this is, I believe does the job the fastest :P

share|improve this answer

Be forwarned... I am using jQuery Mobile 1.0b2 with PhoneGap 1.0.0 on an Android 2.2 (Cyanogen 7.0.1) phone (T-Mobile G2) and could not get the .append() method to work at all. I had to use .html() like follows:

var options;
$.each(data, function(index, object) {
    options += '<option value="' + object.id + '">' + object.stop + '</option>';
});

$('#selectMenu').html(options);
share|improve this answer
Good to know. I wonder where else that might apply. – Darryl Hein Sep 18 '11 at 0:46
function populateDropdown(select, data) {   
    select.html('');   
    $.each(data, function(id, option) {   
        select.append($('<option></option>').val(option.value).html(option.name));   
    });          
}   

It works well with jQuery 1.4.1.

For complete article for using dynamic lists with ASP.NET MVC & jQuery visit: http://www.codecapers.com/post/Dynamic-Select-Lists-with-MVC-and-jQuery.aspx

share|improve this answer

simple way is

$('#SelectId').html("<option value='0'>select </option><option value='1'>Laguna</option>");
share|improve this answer
Works as well, just not as pretty. – Darryl Hein Jun 1 '11 at 21:29
I've already built my options list, so populating the select field was as easy as Willard says. – Loony2nz Aug 3 '11 at 22:14

There's an approach using the Microsoft Templating approach that's currently under proposal for inclusion into jQuery core. There's more power in using the templating so for the simplest scenario it may not be the best option. For more details see Scott Gu's post outlining the features.

First include the templating js file, available from github.

<script src="Scripts/jquery.tmpl.js" type="text/javascript" />

Next set-up a template

<script id="templateOptionItem" type="text/html">
    <option value=\'{{= Value}}\'>{{= Text}}</option>
</script>

Then with your data call the .render() method

var someData = [
    { Text: "one", Value: "1" },
    { Text: "two", Value: "2" },
    { Text: "three", Value: "3"}];

$("#templateOptionItem").render(someData).appendTo("#mySelect");

I've blogged this approach in more detail.

share|improve this answer

A compromise of sorts between the top two answers, in a "one-liner":

$.fn.append.apply($('mySelect'),
    $.map(selectValues, function(val, idx) {
        return $("<option/>")
            .val(val.key)
            .text(val.value);
    })
);

Builds up an array of Option elements using map and then appends them all to the Select at once by using apply to send each Option as a separate argument on the append function.

share|improve this answer

There's a sorting problem with this solution in Chrome (jQuery 1.7.1) (Chrome sorts object properties by name/number?) So to keep the order (yes, it's object abusing), I changed this:

optionValues0 = {"4321": "option 1", "1234": "option 2"};

to this

optionValues0 = {"1": {id: "4321", value: "option 1"}, "2": {id: "1234", value: "option 2"}};

and then the $.each will look like:

$.each(optionValues0, function(order, object) {
  key = object.id;
  value = object.value;
  $('#mySelect').append($('<option>', { value : key }).text(value));
}); 
share|improve this answer

You can just iterate over your json array with the following code

$('<option/>').attr("value","someValue").text("Option1").appendTo("#my-select-id");

share|improve this answer

A jQuery plugin could be found here: http://remysharp.com/2007/01/20/auto-populating-select-boxes-using-jquery-ajax/.

share|improve this answer

I have made something like this, loading a dropdown item via Ajax. The response above is also acceptable, but it is always good to have as little DOM modification as as possible for better performance.

So rather than add each item inside a loop it is better to collect items within a loop and append it once it's completed.

$(data).each(function(){
    ... Collect items
})

Append it,

$('#select_id').append(items); 

or even better

$('#select_id').html(items);
share|improve this answer

I found that this is simple and works great.

for (var i = 0; i < array.length; i++) {
    $('#clientsList').append($("<option></option>").text(array[i].ClientName).val(array[i].ID));
};
share|improve this answer

@joshperry

It seems that plain .append also works as expected,

$("mySelect").append(
  $.map(selectValues, function(v,k){

    return $("<option>").val(k).text(v);
  })
);
share|improve this answer

that's what i did with two-dimensional array: first column is item i add to innerHTML of the <option>, second column is record_id i add to the value of the <option>:

  1. PHP

    $items = $dal->get_new_items(); //gets data from the db
    $items_arr = array();
    $i = 0;
    foreach ($items as $item)
    {
        $first_name = $item->first_name;
        $last_name = $item->last_name;
        $date = $item->date;
        $show = $first_name . " " . $last_name . ", " . $date;
        $request_id = $request->request_id;
        $items_arr[0][$i] = $show;
        $items_arr[1][$i] = $request_id;
        $i++;
        }
    
        echo json_encode($items_arr);
    
  2. JS/AJAX

    function ddl_items(){
    if (window.XMLHttpRequest){
        // code for IE7+, Firefox, Chrome, Opera, Safari
        xmlhttp=new XMLHttpRequest();
    }
    else{
        // code for IE6, IE5
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
    
    xmlhttp.onreadystatechange=function(){
    if (xmlhttp.readyState==4 && xmlhttp.status==200){
        var arr = JSON.parse(xmlhttp.responseText);
        var lstbx = document.getElementById('my_listbox');
    
        for (var i=0; i<arr.length; i++) {
                var option = new Option(arr[0][i], arr[1][i]);
                lstbx.options.add(option);
            }
        }
    };
    
        xmlhttp.open("GET","Code/get_items.php?dummy_time="+new Date().getTime()+"",true);
        xmlhttp.send();
        }
       }
    
share|improve this answer
Looks good. Too bad it's not using jQuery. Also, I've had problems before with the select.options.add() method. Can't recall which browser and the exact problem, but I decided to go a way from it and let jQuery deal with the differences. – Darryl Hein Aug 15 '12 at 3:24
im a total noob with PHP and JQuerry, but the above code is working in all browsers. the only problem - it's not working well on iPhone, i posted a question about it, no luck so far :( stackoverflow.com/questions/11364040/… – Eric Sharp Aug 15 '12 at 20:25

Although the above are all valid answers - it might be advisable to append all these to a documentFragmnet first, then append that document fragment as an elemet after...

see John Resig's thoughts on the matter..

Something along the lines of:

var frag = document.createDocumentFragment();

for(item in data.Events)
{
   var option = document.createElement("option");

   option.setAttribute("value", data.Events[item].Key);
   option.innerText = data.Events[item].Value;

   frag.appendChild(option);
}
eventDrop.empty();
eventDrop.append(frag);
share|improve this answer

Yet another way of doing it:

var options = [];    
$.each(selectValues, function(key, value) {
    options.push($("<option/>", {
        value: key,
        text: value
    }));
});
$('#mySelect').append(options);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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