Jquery – XML parsing Jquery

jqueryxml

I have an XML file which has four <resultGroups> tag:

<resultGroups> 
    <subGroups>
        <results> </results>
        <results> </results>
    </subGroups>
    <name> </name>
</resultGroups>

each <resultGroup> has several <subGroups> and each <subGroups> has several <result> tag.

I want to get the no of "results" tag in each subgroups, each resultGroups etc…

How can i do that using jQuery…

Best Solution

$xml = $(xmlString);
$('resultGroups', $xml).each(function() {
    $('subGroups', this).each(function() {
        var count = $('results', this).length;
        // do whatever
    });
});