$.ajax({
type: "GET",
url: "awards.xml",
dataType: "xml",
success: parseXml
});
function parseXml(xml)
{
I see
$("#xml_test").append($(this).find("award").text()); });
returns all the text from my award nodes
$("#xml_test").append($(this).find("award").html()); });
my award nodes have some html in them so i was hoping i could display it with .html() but i can see in the documentation that .html() cannot be used with xml.
Is there an alternative or workaround that someone knows of to display the html similar to the asXML() function in PHP.
Thanks