i was trying to get the facebook feeds in json using the jquery....
this is the script i am trying to achive the data
$(function () {
$.ajax({
url: 'http://www.facebook.com/feeds/page.php?id=237173582992285&format=JSON',
type: 'get',
dataType: "jsonp",
success: function (data) {
alert("data successfully came ");
}, error: function (data) {
alert("fail to get the data");
}
});
});
i have trace in mozila firefox.in console data is returning in json format...
data is not binding in success method.. data is binding in error method..
please check this above snapshot attached here