Добрый вечер.
Ничего не могу понять... $.ajax должен возвращать объект XMLHttpRequest, но выходит вот что на деле:
function setDataForMove(parent_id, child_id)
{
var response=$.ajax(
{
url: "../Page/movePageAjax",
type: "POST",
data:{parent_id:parent_id,child_id:child_id},
dataType: "json",
complete: function(XHR)
{
alert(XHR.responseText); //выводит true (как и должно быть)
}
}).responseText;
alert(response); // выводит undefined
if (response==true)
return true;
return false
}
В чем может быть проблема? Заранее всем спасибо.