On Feb 20, 9:03 pm, opiv209 <[email protected]> wrote:
> Thanks so much, Andrew. It mostly makes sense to me conceptually now--
> I think I'm really close to getting it.

  var xml = GXml.parse(data);
  var events = xml.documentElement.getElementsByTagName("event");

OK so far. Then you need to look at each event:

  for (var i=0;i<events.length;i++) {

and get the params for each event:

    var params = events[i].getElementsByTagName("params");

and then loop through the params collection to get the attributes you
need.

Andrew
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to