Ticket #8640 (closed bug: invalid)
IE8 throws error on fadeTo in jQuery 1.5.1
| Reported by: | jekorma@… | Owned by: | |
|---|---|---|---|
| Priority: | undecided | Milestone: | 1.next |
| Component: | unfiled | Version: | 1.5.1 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
When using 1.5 or 1.5.1 IE8 throws an error when using .fadeTo the following way:
$(element).fadeTo(500, 0.7);
if instead the opacity is put in single quotes, it seems to work:
$(element).fadeTo(500, '0.7');
The error is on line 978 and IE error is: 'object doesn't support this property or method'
Error is not there when using 1.5.2 rc1
Change History
comment:2 Changed 2 years ago by timmywil
Perhaps you could provide a test case on jsfiddle.net demonstrating the failure.
comment:3 Changed 2 years ago by jekorma@…
Ok, my bad, turns out a plugin was causing the error... the fact that is was only happening in 1.5 caused me to think it was jQuery related, I will be more thorough next time.
Sorry to have wasted everyone's time :-S
Consider this ticket closed.
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

EDIT: disregard last comment regarding error not being present in 1.5.2 rc1