Side navigation
#5844 closed bug (invalid)
Opened January 18, 2010 05:22AM UTC
Closed January 20, 2010 03:28AM UTC
Global Ajax Event is not compatible with version 1.3.2
Reported by: | quaff | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | 1.4.1 |
Component: | ajax | Version: | 1.4 |
Keywords: | Event | Cc: | |
Blocked by: | Blocking: |
Description
$().ajaxSuccess(function(ev, xhr) {test()}); doesn't works for 1.4.0
it has to be
$(document).ajaxSuccess(function(ev, xhr) {test()});
Have you read the release notes?
http://jquery14.com/day-01/jquery-14
Backwards-Incompatible Changes:
...
jQuery() (with no arguments) no longer converts to jQuery(document).
...