jQueryを使用してXMLを解析しようとしていますが、これを私の人生で機能させることはできません。
var geoCity = "Aberdeen"
$.ajax({
type: "GET",
url: "http://www.google.com/ig/api?weather="+geoCity,
dataType: "xml",
success: parseXml
});
function parseXml(xml) {
$(xml).find("weather").each(function() {
$("body").append($(this).find("current_conditions").text() );
});
}
});