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.
|
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.
|
|||
|
|
|
|
Same as above, in jQuery fashion:
|
||
|
|
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... |
||
|
|
|
|
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 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:
Hope this code helps others that feel the pain of IE's and Safari's quirks. |
|||
|
|
|
|
In this way you "touch the DOM" only one time.
|
||||||
|
|
|
matdumsa: is it wrong to do this?
Instead of setting attributes, I just put the full HTML string in and let jQuery deal with it...but does it? |
||
|
|
|
|
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.
append it
or even better
|
||
|
|
|
|
Using DOM Elements Creator plugin (my favorite):
Using the
Using
|
||
|
|
|
|
I've done a few tests and this is, I believe does the job the fastest :P |
||
|
|
|
|
This is what I did:
|
|||
|
|