For actually modifying the options, you don't really need jQuery. You can clear the old options by assigning to the length
property of the options
property of the SELECT
box, and then add new options via #add
and new Option()
.
Here are a couple of examples using jQuery for the XHR part and then doing the options directly:
From an array:
If you're drawing the data from an array within the object (in this case, an array identified by the property options
on the resulting object):
JSON:
{
"options": [
{"value": "New1", "text": "New Option 1"},
{"value": "New2", "text": "New Option 2"},
{"value": "New3", "text": "New Option 3"}
]
}
JavaScript:
$.ajax({
url: "http://jsbin.com/apici3",
dataType: "json",
success: function(data) {
var options, index, select, option;
// Get the raw DOM object for the select box
select = document.getElementById('theSelect');
// Clear the old options
select.options.length = 0;
// Load the new options
options = data.options; // Or whatever source information you're working with
for (index = 0; index < options.length; ++index) {
option = options[index];
select.options.add(new Option(option.text, option.value));
}
}
});
Live example
Directly from an object:
If you're using the object's property names as option
values, and the property values as the option text:
JSON:
{
"new1": "New Option 1",
"new2": "New Option 2",
"new3": "New Option 3"
}
JavaScript:
$.ajax({
url: "http://jsbin.com/apici3/2",
dataType: "json",
success: function(data) {
var name, select, option;
// Get the raw DOM object for the select box
select = document.getElementById('theSelect');
// Clear the old options
select.options.length = 0;
// Load the new options
for (name in data) {
if (data.hasOwnProperty(name)) {
select.options.add(new Option(data[name], name));
}
}
}
});
Live Example
Update: Rather than
select.options.add(new Option(...));
you can also do:
select.options[select.options.length] = new Option(...);
Live example
...which I think actually I would tend to use over the add
method on the options
array-like-thing (I'm not calling it an array because it has a method, add
, that arrays don't have; and because if you use push
, which arrays do have, it doesn't work).
I've tested both methods on
- IE6,7,8 (Windows)
- Chrome (Linux & Windows)
- Firefox (Linux & Windows)
- Opera (Linux & Windows)
- Safari (Windows)
...and the both work. Perhaps someone with a Mac could try Safari on OS X for me.
I'd say both ways are very, very well supported.