Since I have mootools used on a web page, jquery conflicts with it so I'm attempting to traverse the following xml file.
<gallery>
<album title="test" description="test" lgPath="/images/commphotos/">
<img src="1130975173.jpg" />
<img src="1475634985E.jpg" />
<img src="1889677107.jpg" />
<img src="1356256436.jpg" />
<img src="834682273.jpg" />
</album>
</gallery>
One I return the javascript file using a standard ajax call. How would I traverse it to get the image tags out. Using responseText when returning the xml? Can't use jquery. I have no idea how to do mootools.
Thanks