jquery: Why do opacity animations only work with FF?
- by incrediman
I'm wondering why opacity animations only work with Firefox, and not with chrome or internet explorer.
For example,
jQuery("#a").fadeTo(1000,1);
fades the element in with firefox, but just makes it appear with Chrome or IE. All I want is for the element to fade in.
How can I get this to work with IE and chrome?
Edit: Same thing if I use fadeIn() or any other similar function, like show()