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:
http://www.w
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 re
2 matches
Mail list logo