Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: added links to jqXHR documentation on jquery.com

...

  1. before handler - attributes (the Ajax call attributes)
  2. beforeSend handler - attributes, jqXHR (the jQuery XMLHttpRequest object), settings (the jQuery ajax settings)
  3. after handler - attributes
  4. success handler - attributes, jqXHR, data (the response), textStatus (the response status)
  5. failure handler - attributes, errorMessage (the error message from jQuery)
  6. complete handler - attrs, jqXHR, textStatus

The global listeners receive the same parameters prepended by jqEvent. This is the event triggered by jQuery. See section Global Ajax call listeners above.

...