$.ajax({
url: '../XmlFiles/Sm.xml',
async: true,
cache: false,
dataType: 'xml',
error: function (error) { alert(error); },
success: function (xml) {
$('#TextArea1').val($(xml).find("content").text());
}
});