Modify ↓
Ticket #6277 (closed bug: invalid)
IE8 Error in jQuery.extend()
| Reported by: | gzoller | Owned by: | |
|---|---|---|---|
| Priority: | Milestone: | 1.4.3 | |
| Component: | effects | Version: | 1.4.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
Invalid argument. (jquery-nightly.js, 5938) in IE8 (haven't tested other IE versions)
Currently from nightly 3/12/10:
| fx.prop === "height" ? Math.max(0, fx.now) : fx.now) + fx.unit; |
Possible Fix:
| fx.prop === "height" ? Math.max(0, fx.now) : fx.now; |
5939: fx.elem.style[ fx.prop ] = (isNaN(value) ? 0 : value) + fx.unit;
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.

It doesn't look like this is related to .extend() - can you provide some code that triggers this error?