#8173 closed bug (invalid)
1.5 Ajax not triggering error for bad URL
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | ajax | Version: | 1.5 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description (last modified by )
This simple AJAX call includes a URL that doesn't exist. In 1.5 in Firefox it does not display the alert meaning the error is not being caught (or causes a runtime error in Firebug). In 1.4.4 it properly catches the error in the textStatus.
$('#cmdDetails').bind('click', function() { $.ajax ({ type: "GET", dataType: "json", url: "server/fakeurl.php", complete : function(data, textStatus, jqXHR) { alert(textStatus); } }) });
Change History (8)
comment:1 Changed 12 years ago by
Component: | unfiled → ajax |
---|---|
Description: | modified (diff) |
Owner: | set to [email protected]… |
Priority: | undecided → low |
Status: | new → pending |
comment:2 Changed 12 years ago by
If you could also include what version of Firefox you're testing with that would be of benefit.
comment:3 Changed 12 years ago by
Status: | pending → new |
---|
It had to do with making the AJAX call from within a form's submit button click event. For some reason, FireFox 3.6.13 did not like this. But it doesn't really have to do with the AJAX call itself, so you can close this ticket.
Thanks very much and I apologize that I did not enter the bug using the proper protocol.
comment:4 Changed 12 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
comment:5 follow-up: 6 Changed 12 years ago by
Sorry, I dont like to create jsFiddle acc just to say how to reproduce the bug. Change URL.
JSONP does not trigger error callbacks, neither local nor global. In 1.5, 1.4.4, 1.4.3, 1.4.2.
comment:6 Changed 12 years ago by
Replying to anonymous:
Sorry, I dont like to create jsFiddle acc just to say how to reproduce the bug. Change URL.
JSONP does not trigger error callbacks, neither local nor global. In 1.5, 1.4.4, 1.4.3, 1.4.2.
Because I can't reliably do so. And the documentation clearly states this behavior. http://api.jquery.com/jQuery.ajax
error: This handler is not called for cross-domain script and JSONP requests.
comment:7 Changed 10 years ago by
Just wanted to bring this bug back up to life, as it seems that using HTTPS in the connection prevents the error from showing up.
See Live Example
comment:8 Changed 10 years ago by
Please *don't* jump on two-year-old closed bug threads, instead ask for help on the forum.
Thanks for taking the time to contribute to the jQuery project by writing a bug report!
After checking your report I made this live test case based on your description. I can't seem to reproduce the behavior you described, as I get an alert saying "error" in FF.
So please submit a reduced test case, which reproduces the issue you are experiencing, on http://jsfiddle.net. So that we can investigate this issue further. Also make sure to read the link given below, in order to provide a most useful bug report.
How to report bugs