this is a sample part of xml example
<PivotSet>
<item>
<column name = "M">1</column>
<column name = "F">1640</column>
</item>
<item>
<column name = "M">2</column>
<column name = "F">5960</column>
</item>
</PivotSet>
<PivotSet>
<item>
<column name = "M">1</column>
<column name = "F">1700</column>
</item>
<item>
<column name = "M">2</column>
<column name = "F">7000</column>
</item>
</PivotSet>
It should be as the following
1
1640 1700
2
5960 7000
Can you help me by telling me how to do this using jquery please
Exactly the same way you traverse XHTML (since it’s XML).
Here’s an example:
http://jsfiddle.net/uBv2L/
edit: your specific case:
http://jsfiddle.net/uBv2L/1/