How to convert xml to json using jquery

The following code works very well for this test XML page :

$.get('data/animals.xml', function(xml){ var animals = $.xml2json(xml); alert(animals.dog[1].name +'/'+ animals.dog[1]); }); 

But how can I adapt this code to get speed data from this page of the European Central Bank ?


Link:

+7
json javascript jquery xml
Sep 04 '10 at 15:06
source share
1 answer

Try the following. I tested it on FF 3.6 and Chrome 6, it works.

 $.get('data/eurofxref-daily.xml', function(xml) { var jsonObj = $.xml2json(xml); alert(jsonObj.Cube.Cube.Cube[0]["rate"]); }); 
+12
04 Sep '10 at 10:20
source share



All Articles