vote up 4 vote down star
7

What is the best method for adding options to a select from a JSON array 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.

flag

70% accept rate

9 Answers

vote up 10 vote down check

Same as above, in jQuery fashion:

$.each(selectValues, function(key, value)
{   $('#mySelect').append($("<option></option>").attr("value",key).text(value)); });
link|flag
Does not work in Safari 3.2. – zgoda Feb 20 at 11:15
1  
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 at 19:30
vote up 1 vote down

Darryl Hein: It's not bad and totally valid.. but jQuery, under the hood convert all html and internally perform the same operation everytime you give HTML to it:

http://www.slideshare.net/jeresig/jquery-internals-cool-stuff-presentation/

Slide 21 and + (from John Resig).. I suppose that it would be faster to give less html in string and more attribute setting...

link|flag
vote up 1 vote down

I have similar problems but with a little difference. In my case, I want to remove all options, then send a get request to get a new options in JSON format, then add the new options to the select (now empty).

Using http://www.texotela.co.uk/code/jquery/select/ plugins is working flawlessly in Firefox. My client also wants it to work in IE and Safari. Problems arise when I implement jQuery validation plugins in the same page. I'm using a validation plugin as well.

In firefox no problems at all. But in IE and safari, the select box stays empty after JSON data received. I have tried many methods mentioned on this page and other sources I found in google. I have tried select.add, select.options.add, creating string var option_text = '<option value="val">text</option>' then add it to select: $("select").html(option_text). All methods worked on Firefox, but none worked on Safari and IE.

In my last attempt, I change the server side response from JSON to a complete select element. When I want the select to change, I empty the select's parent, do AJAX get request, then add the data response to the container. This method worked in all 3 browser (Firefox, IE, Safari). (Note that this is Windows version of Safari.) I'm still waiting my client's response on Mac's Safari.

This is my code snippets:

var loading_image = '<img src="FULL_PATH_TO_loading.gif'; ?>" alt="loading..." id="loading-image" />';
//handle date change and available time
function do_update_time($){
  $("#appointment_time_container").after(loading_image);
  var url = 'http://PATH_TO_LOAD_NEW_OPTION';
  $.get(url,
    {},
    function(data){
      $("#loading-image").hide().remove();
      $("#appointment_time_container").html(data);
    });
};

Hope this code helps others that feel the pain of IE's and Safari's quirks.

link|flag
vote up 1 vote down
var output = [];

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

$('#mySelect').get(0).innerHTML = 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)

link|flag
You method is obviously the faster one than the 'correct' answer above since it uses less jQuery too. – Thorpe Obazee Nov 9 at 7:04
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 at 12:23
as $(* selector *) function returns a reference to the jquery object (a collection), get(0) (or simply [0]) return the first pure HTML DOM object (you can apply non jquery methods on it): docs.jquery.com/Core/get – gpilotino Nov 25 at 13:00
vote up 0 vote down

matdumsa: is it wrong to do this?

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

Instead of setting attributes, I just put the full HTML string in and let jQuery deal with it...but does it?

link|flag
vote up 0 vote down

I have made something like this load dropdown item via ajax, the response above also acceptable but it always good to have DOM modification as less as it can for better performance.

so rather than add each item inside a loop it is better to collect item within a loop and append it once its completed.

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

append it

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

or even better

$('#select_id').html(items);
link|flag
vote up 0 vote down

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"));
link|flag
vote up 0 vote down
 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

link|flag
vote up -1 vote down

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>');
    }
}
link|flag

Your Answer

Get an OpenID
or

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