Why can't I pass a named function to the jquery ajax complete option. Here's my code:
$.ajax({
type: 'post',
url: baseURL + '/' + controller + '/' + action,
data: params,
success: function(data){
//do something
},
complete: function(jqXHR, textStatus){
checkResponseCode(jqXHR, textStatus);
}
});
I wanted to just write out: "complete: checkResponseCode(jqXHR, textStatus);"
()after a function calls the function. – Felix Kling Jun 16 '11 at 23:51complete: checkResponseCode? – mu is too short Jun 16 '11 at 23:52