We are using jQuery ajax in our application.
For example to get the states in a country ,after getting the result from server then we are doing the following thing.
$.each(results , function(index,value){
$('#id').append('<option value="'+index+'">'+value+'</option>');
});//Here `id` the select box id
It is working perfectly. But I need a better readable solution. Is there any other way to do this?