Side navigation
#7349 closed bug (fixed)
Opened October 29, 2010 09:17AM UTC
Closed October 29, 2010 02:26PM UTC
bug in cleanData jquery-1.4.2.js line 4522
Reported by: | anonymous | Owned by: | |
---|---|---|---|
Priority: | high | Milestone: | 1.4.3 |
Component: | event | Version: | 1.4.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I found an issue in in Internet explorer when unbinding events, the fix is relatively simple
the error lines are
if( id ) data = cache[id];
if(data.events) { ....
to fix this
if( id ) data = cache[id];
if(data && data.events) {...
later
This has already been fixed in jQuery 1.4.3.
http://github.com/jquery/jquery/blob/1.4.3/src/manipulation.js#L559
Next time please also check with the most current jQuery version before reporting How to report a bug instructions and if possible provide a test case. Thanks