0

I have a problem with the following two methods. $(this).fadeTo(200, .8).animate({bottom: 130}, 200); Both are synchronous, therefore first it fades to, then it animates.

Is it possible to use fadeTo with animate?

(CSS option 'opacity' is not cross-browser compatible and therefore not an option)

Gajus
  • 69,002
  • 70
  • 275
  • 438

1 Answers1

2
$(this).animate({
  bottom: 130,
  opacity: 0.8
}, 200);

jQuery will set things up to make opacity working on IE. See Animate opacity doesn't work properly on IE

Community
  • 1
  • 1
Clement Herreman
  • 10,274
  • 4
  • 35
  • 57