View Single Post
Old 10-10-2012, 07:25 PM   PM User | #2
xelawho
Senior Coder

 
xelawho's Avatar
 
Join Date: Nov 2010
Posts: 2,461
Thanks: 52
Thanked 457 Times in 455 Posts
xelawho will become famous soon enoughxelawho will become famous soon enough
I don't really know how jQuery parses xml. If they were normal html tags you could do this:
Code:
<script>
$('item').each(function() {
    alert($(this).attr('def'));
});
</script>
xelawho is offline   Reply With Quote