My PHP side sends reponse to ajax like that
$data = array(
'status' => $status,
'message' => $message
);
echo json_encode($data);
My ajax looks like that
$.ajax({
url: formUrl,
type: formMethod,
dataType: "json",
data: formData,
success: function (data) {
//setup variables
var responseData = jQuery.parseJSON(data), cl, text;
//response conditional
switch (responseData.status) {
case 'error':
cl = 'error';
text = responseData.message;
break;
case 'success':
cl = 'success';
text = 'Qeydiyyat uğurla başa çatdı';
break;
}
$.notifyBar({
cls: cl,
html: text
});
}
});
Getting responseData is null error message. But (from firebug XHR) I see that php actually echoes result. What could be the reason?
alert(data.status)it will work (remove the parseJSON first). – Burning the Codeigniter Nov 11 '11 at 1:30