Using JQuery or Javascript how would I return 'Mary Boone' from the xml below starting out with the show 'id' attribute of '2'?
I'm thinking something along the lines of -
var result = xml.getElementByAttribute("2").gallery.text();
the XML:
<shows>
<show id="1">
<artist>Andreas Gursky</artist>
<gallery>Matthew Marks</gallery>
<medium>photography</medium>
</show>
<show id="2">
<artist>Eric Fischl</artist>
<gallery>Mary Boone</gallery>
<medium>painting</medium>
</show>
</shows>
Hello,
I am a Computer Science student and working on a project based on Nutch search engine, I want to develop the Java algorithms to better index and search Arabic websites?. Which part of the programming code should I optimize for this purpose, any idea?
thanks in advance
Moudy