Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jquery - iterate through all xml tags

Tags:

jquery

how to loop over all tags in a xml

i have a php that generates xmls like the next one

<register>
  <name>peter</name>
  <age>12</age>
</register> 
<register>
  <name>mary</name>
  <age>20</age>
</register> 

so i receive this xml (this works fine)

$.ajax({success: function(xml) {  

   $(xml).find('register').each (function() 
   { 
     alert($(this).find('name').text()) // works fine, shows peter then mary on the next loop of "each"



     // But if i dont know the tag names (name,age) for each register ?     

     // Something like

      $(this).nodes().each .... // 
 alert($(this).tagName);  // i wanna show "name" & "age", how can i get the tag names inside each register in my xml sample tree?

   });    

}});
like image 646
dedoz Avatar asked Nov 14 '09 17:11

dedoz


1 Answers

This link provides a good example for use of iterating through xml

xml.find('result').find('permissionDetails').each(function(){
    $(this).children().each(function(){
        var tagName=this.tagName;
        var val=$(this).text();
        if(val==1){
            $('input:checkbox[name='+tagName+']').attr('checked',true);
        }
        else if(val==0){
            $('input:checkbox[name='+tagName+']').removeAttr('checked');
        }
    })
});

http://anasthecoder.blogspot.in/2012/02/looping-through-xml-with-jquery.html

like image 147
Ima Avatar answered Sep 17 '22 18:09

Ima