Hello
i need to iterate xml items
Sample xml
<items>
<name>234</name>
<email></email>
<phone></phone>
<phone2></phone2>
<phone7>33</phone7>
</items>
i tried lot of combinations but no success :( for example
var xml=' <items><name>234</name> <email></email><phone></phone></items>'
$(xml).find('items\').each(function() {
alert($(this).text() + ':' + $(this).value());
});
any help