/ Published in: jQuery
Expand |
Embed | Plain Text
function parseXml(xml) { //find every Tutorial and print the author $(xml).find("Tutorial").each(function() { $("#output").append($(this).attr("author") + ""); }); }
You need to login to post a comment.
