ajaxSubmit return form element. How can we access to "server response" of "jqXHR" of its ajax request?
var response,xhr;
$(form).ajaxSubmit({
success:function (d, t, x) {
response=d;
xhr=x;
}
});