#8640 closed bug (invalid)
IE8 throws error on fadeTo in jQuery 1.5.1
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | 1.next |
Component: | unfiled | Version: | 1.5.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
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 (5)
comment:1 Changed 13 years ago by
comment:2 Changed 13 years ago by
Perhaps you could provide a test case on jsfiddle.net demonstrating the failure.
comment:3 Changed 13 years ago by
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.
comment:4 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
EDIT: disregard last comment regarding error not being present in 1.5.2 rc1