I have been searching how to display data from a xml file in a html5 application. I have a html5 web page that has to read data from a xml saved locally in a folder. I have been trying with xslt, java and everything but I really can’t.
Can someone help me please? Any user guide for dummies? Any tip? Thanks!!
I always retrieve my XML using AJAX, so for me:
If there are multiple nodes, then you have to loop through them and extract the nodeValue in each iteration. I find it helpful to think about the content you want to extract from an XML element as the first Child of the element–
Hope this helps.