$("#UpdateBody").text(function(index, text) {
return text.replace('{{ cy }}', $(xmlContent).find("cy").text());
});
$("#UpdateBody").text(function(index, text) {
return text.replace('{{ pr }}', $(xmlContent).find("pr").text());
});
$("#UpdateBody").text(function(index, text) {
return text.replace('{{ yav }}', $(xmlContent).find("yav").text());
});
var ids = ['cy', 'pr', 'yav'];
function make_replace(){
var $item = $('#UpdateBody'),
$xmlContent = $(xmlContent);
$item.text(function(index, text) {
ids.forEach(function(id){
text = text.replace('{{ '+id+' }}', $xmlContent.find(id).text());
});
return text;
});
}