I am generating json from an xml file using the Newtonsoft dll. From the below how would I get the address details into a list(if there were more in the example) and write them
var json = // that object above
var addresses = json.Root.Information.Address.Address;
for (var i = 0; i < addresses.length; i++) {
var $option = $("").val(addresses[i]["@AddressID"]).text(addresses[i]["@Description"]);
$("#mySelect").append($option);
}