vote up -1 vote down star
1
$.ajax(error:function(XMLHttpRequest, textStatus, errorThrown)
             { XMLHttpRequest.statusText })

Did someone also met this problem?

EDIT

I'm using Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.0.2) Gecko/2008091620 Firefox/3.0.2

flag

40% accept rate
more info please. for instance, a browser would be nice. – geowa4 Sep 21 at 12:29
I'm using Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.0.2) Gecko/2008091620 Firefox/3.0.2 – Shore Sep 21 at 12:37
You can somehow make the error handler be called,it's 100% sure to cause exception in my browser. – Shore Sep 21 at 12:37
btw, edit your question with that type of info. so it's not the first thing i thought of. what is the error in firebug. – geowa4 Sep 21 at 13:12

1 Answer

vote up 0 vote down

Try changing XMLHttpRequest to something like 'e'. Might just be a naming conflict? Also, are you actually making a valid ajax call?

jQuery.ajax({ 
    url: "/file/location.php", 
    data: "param"+value,
    error: function(e){
        alert(e.responseText);
    }
    success: function(data) { alert(data); }
});
link|flag
I changed it to 'xhr',but still happens. – Shore Sep 21 at 20:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.