#1863 closed enhancement (duplicate)
support for error and timeout in JSONP calls
Reported by: | tr4nslator | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4 |
Component: | ajax | Version: | 1.3.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
As discussed in this thread, jQuery would benefit significantly from the addition of timeout and error handlers for JSONP calls, helping to close the functionality gap XHR calls.
Such support could be added by:
- using setTimeout before the script is injected to call the error function when the timeout time elapses,
- using clearTimeout when the script is successfully executed to remove the above call, and
- using the onerror handler for the script, to call the error function in the event that the script returns a non-200 response (and therefore is not executed).
Also, it would help if the injected script was returned by $.ajax for further manipulation, just as the XHR object is returned for XMLHttpRequest calls.
Change History (3)
comment:1 Changed 15 years ago by
Component: | core → ajax |
---|
comment:2 Changed 15 years ago by
comment:3 Changed 14 years ago by
Milestone: | 1.2.2 → 1.4 |
---|---|
Resolution: | → duplicate |
Status: | new → closed |
Version: | 1.2.1 → 1.3.2 |
We'll work on this in bug #3442.
Note: See
TracTickets for help on using
tickets.
See ticket #3442 for JSONP/script abort and timeout patch.