Side navigation
#4504 closed bug (invalid)
Opened April 08, 2009 09:24AM UTC
Closed August 09, 2009 01:52AM UTC
IE7: Object doesn't support this property or method, for handler.apply
Reported by: | sido | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4 |
Component: | unfiled | Version: | 1.3.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
When working on a CMS in combination with extjs I got the error: "Object doesn't support this property or method" in ie7
Found the problem in jquery-1.3.2.js on line 2693
var ret = handler.apply(this, arguments);
In order to fix it, changed line to:
if(typeof handler.apply == 'function') {
var ret = handler.apply(this, arguments);
}
Can you provide a test case?