I'm using jQuery.
$.ajax({
url: xxx,
success: function(data) {
...
}
});
The data is an XML document like:
<root>
<source>
<a><source>...</source></a>
<b>...</b>
...
</source>
<article>
...
</article>
</root>
I want to extract the XML fragment under source tag, and append them to a div with id "converted". How could I do? PS: the fragment may include source tags too.