[jQuery] Re: Trying to get a handle on xml returned object

2007-10-01 Thread Lee Hinde
Firebug is great for this sort of stuff; it'll show you exactly what is coming back. http://www.getfirebug.com/ On 9/24/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I've been trying to getsome XML data out of a jQuery AJAX request and I'm having trouble. Problem is, I can't read the

[jQuery] Re: Trying to get a handle on xml returned object

2007-10-01 Thread Robert Koberg
Hi, You can use standard DOM properties and method. For example, since you have an XMLDocument you can ask for the root element: var myRootXMLElement = myXMLDoc.getDocumentElement(); or get element by their local name: var allParas = myXMLDoc.getElementsByTagName(p); Check out: