I do not quite understand why this will not work. I thought it was easy to interact with XML, but I couldn't help but feel that XML markup was causing a problem. I know its validate XML, but still:
XML 79.xml
<TREE xmlns:autn="http://schemas.autonomy.com/aci/"> <ITEM id="753" name="Report an IT Issue for a Corporate Finance Application." link="http://ithelp-remedy.gsk.com/ars/ITHelpHDsubmit_Application/SubmitProblemTicket.asp?qSummary=CORPFINANCEIT"> <HELPLINKS/> </ITEM> </TREE>
It is also worth noting that all of the XML that I will return should not contain more details in the xml header?
JQuery
$.ajax({ url:'xml/79.xml', dataType : 'xml', success: function(data){ console.info(data); } });
This will not return me the object to play back :( How can I get it so that I can easily play using data
source share