jQuery.ajax({
type: "GET",
url: 'http://example.com/restaurant/VeryLogin(username,password)',
dataType: "json",
success: function (data) {
alert(data);
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert("error");
}
});
it alerts success, but data was null. The url returns xml data, if we specify the dataType we can get the json data,but here it was not getting any data.
Any help appreciated.