Hi Orchid,
The best way to handle data from the API in Javascript is to request
JSON from the API. If you get JSON, then you will not need to worry
about parsing XML.
You can read more about JSON here:
http://www.json.org/
JSON is easy to use. Let's say I have a JSON object that looks like
this:
var winedata = { name: 'Test Wine 1', vintage: '2001' };
I can easily access the data.
alert('Alerting wine ' +
winedata.name + ' ' + winedata.vintage);
Hope that helps.
Mark