Modify ↓
Ticket #4504 (closed bug: invalid)
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: | ||
| Blocking: | Blocked by: |
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);
}
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Can you provide a test case?