User1136423486 posted
$(function () {
var XML_PATH = "../xmlfile.xml";
$.ajax({
type: "GET",
url: XML_PATH,
dataType: "xml",
success: function (xml) {
$(xml).find('Country').each(function () {
var country = $(this).text();
$('#list').append("<option value='" + country + "'>" + country + "</option>");
});
}
});
});
I found answer.....