Opened 13 years ago
Closed 12 years ago
#5383 closed bug (fixed)
if jsonp not crossdomain, the complete handler will trigger twice
Reported by: | asfman | Owned by: | |
---|---|---|---|
Priority: | high | Milestone: | 1.4.3 |
Component: | ajax | Version: | 1.4.2 |
Keywords: | ajax complete jsonp | Cc: | [email protected]… |
Blocked by: | Blocking: |
Description
the first trigger in onreadystatechange the second trigger in window[jsonp]
it can be solved the same as success handler: if ( !jsonp )
success();
if ( !jsonp )
complete();
Change History (2)
comment:1 Changed 13 years ago by
comment:2 Changed 12 years ago by
Keywords: | jsonp added |
---|---|
Milestone: | 1.3.2 → 1.4.3 |
Priority: | minor → high |
Resolution: | → fixed |
Status: | new → closed |
Version: | 1.3.2 → 1.4.2 |
This was fixed in jQuery 1.4.3
Note: See
TracTickets for help on using
tickets.
See test case in duplicate #4810.