jQuery.ajax success callback function not executed
Posted
by Frank Michael Kraft
on Stack Overflow
See other posts from Stack Overflow
or by Frank Michael Kraft
Published on 2010-05-07T08:25:55Z
Indexed on
2010/05/07
8:38 UTC
Read the original article
Hit count: 403
I have a JavaScript Ajax call (jQuery.ajax), that does not execute the success callback function.
$.ajax({
url: target,
contentType: 'application/json; charset=utf-8',
type: 'POST',
// type: 'GET',
dataType: 'jsonp',
error: function (xhr, status) {
alert(status);
},
success: function (result) {
alert("Callback done!");
// grid.dataBind(result.results);
// grid.dataBind(result);
}
});
I see in firebug, that the request is posted and the correct result in terms of the json is returned as expected. What is wrong?
© Stack Overflow or respective owner