I am using a blogger xml feed but it won’t work, could someone aid me as to where i have gone wrong or what is missing.
$(document).ready(function () {
$.ajax({
type: "GET",
url: "http://www.blogger.com/feeds/2399953/posts/default",
dataType: "xml",
success: xmlParser
});
});
function xmlParser(xml) {
$(xml).find("entry").each(function () {
$(".entirecont").append($(this).find('title').text());
});
}
You need jsonp data type to be able to access cross domain ajax call.
See the example below and check out what is jsonp in http://www.ibm.com/developerworks/library/wa-aj-jsonp1/
hope it helps
UPDATES
Here is updated version of your jsfiddle