Click here to Skip to main content
15,885,767 members

Comments by bobby2009 (Top 1 by date)

bobby2009 25-Jul-11 23:37pm View    
ok, I corrected the url and added some alert statements and retested in firefox to make sure I was going through the code. I am not getting any output... any ideas?
//print the date followed by the title of each Mission
function parseXml(xml)
{
$(xml).find("Mission").each(function()
{
$("#output").append($(this).find("ID").text());
$("#output").append("," + $(this).find("OrgID").text());
$("#output").append("," + $(this).find("Name").text());
$("#output").append("," + $(this).find("Date").text());
$("#output").append("," + $(this).find("nTouched").text());
$("#output").append("," + $(this).find("HowTouched").text() + "<br />");
});
}