I am trying to debug an error which is coming up when u run the following code. The ajax call simply carries a variable destroy which is a String. However, I am getting an error alert(xhr.status); which is return 0 and statusText is returning "error". Can anyone see a problem in this?
The new updated code is:
function logout() {
var destroy = "session_destroy"
FB.logout(function(response) {
$.post("setUser.php", { destroy: destroy }, function (data) {
alert(data);
window.location.href = "signup.php";
})
.fail(function() {
alert("error");
})
.always(function() {
alert("finished");
});
}
Note: This ajax calls intends to destory session whose code exists in setUser.php
"destroy="+destroychange to this and try: {"destroy":destroy} – Jai Feb 10 at 18:32String? Sometimes error also occurs when the String is notHTML-friendly. Also check the spellings and paths of your files. There's a capitalUinsetUserI guess. – ptokya Feb 10 at 18:39