$.ajax({
url : "handler.php",
async : true,
type: "POST",
dataType : "json",
data : {count: count},
success : function (data) {
alert("All right!");
},
error : function (a, b, c) {
alert("Error:" + a.responseText);
}
});
Возвращается JSON объект, но почему то он выводиться как ошибка, т.е. в
error : function (a, b, c) {
alert("Error:" + a.responseText);
}
Почему такое происходит?