Is it possibble to map the structure of an xml file with jquery? After an ajax call the client gets an xml file, but it doesn't know the file's node structure, how could we reach all of its content? Thanks
edited: For examlpe this xml has changing node structure. How could I reconstruct the exact node structure with jquery?
<?xml version="1.0" encoding="utf-8" ?>
<children>
<child>
<name>Daniel</name>
<age>5</age>
<eye>brown</eye>
</child>
<child>
<name>Herold</name>
<mother>Helena</mother>
<hobby>painting<hobby>
</child>
<child>
<name>Katalin</name>
<birthday>2006-05-26</birthday>
</child>
</children>