()
| 398 | onreadystatechange(); |
| 399 | |
| 400 | function success(){ |
| 401 | // If a local callback was specified, fire it and pass it the data |
| 402 | if ( s.success ) |
| 403 | s.success( data, status ); |
| 404 | |
| 405 | // Fire the global callback |
| 406 | if ( s.global ) |
| 407 | jQuery.event.trigger( "ajaxSuccess", [xhr, s] ); |
| 408 | } |
| 409 | |
| 410 | function complete(){ |
| 411 | // Process result |
no outgoing calls
no test coverage detected