Dear all, is that possible to get a nodevalue including full tags , not merely text.. eg, I have the following xml data, ----------------------------------------------------- <catalog> <cd> <title> empire burlesque </title> <artist> bob dylan </artist> <country> usa </country> <company> columbia </company> <year> 1985 </year> </cd> </catalog> ----------------------------------------------------- and if there any way by jQuery, once I input $ (myXML).find("cd").toString(), it returns ----------------------------------------------------- <cd> <title> empire burlesque </title> <artist> bob dylan </artist> <country> usa </country> <company> columbia </company> <year> 1985 </year> </cd> ----------------------------------------------------- cause $(myXML).find("cd").text() only returns below text value.. ----------------------------------------------------- empire burlesque, bob dylan, usa, columbia, 1985 .... -----------------------------------------------------
best regards, thx