How Can I read the below file without using tag names.If suppose I have to fetch Title value, I know using xmlDoc.getElementsByTagName("title").item(0).firstChild.nodeValue;
But How can I read without using Tag Names.
<catalog>
<title>Airbus Aircraft Families</title>
<aircraft>
<Airbus>A380</Airbus>
<Aircraft>A380 </Aircraft>
<seats>555</seats>
<Range>15000km </Range>
</aircraft>
</catalog>