Modify ↓
Ticket #2933 (closed bug: worksforme)
jQuery-1.2.3.js, jQuery-1.2.5.js - function filter
| Reported by: | Tom Freudenberg | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.2.5 |
| Component: | core | Version: | 1.2.3 |
| Keywords: | filter | Cc: | |
| Blocking: | Blocked by: |
Description
jQuery will generate a lot of errors in browser console. This is happen by a missing typeof test. This was happen after changes from jQuery 1.2.2 to jQuery 1.2.3.
Please find attached diff extract for jQuery-1.2.3 and jQuery-1.2.5
jQuery.1.2.3.js: change line 1764
jQuery.1.2.5.js: change line 1762
< if ( typeof fn == "string" ) --- > if ( typeof fn == "string" || typeof fn == "undefined" )
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.

Hi Tom
We need a test case where this happens. Could you please provide one ?