I’m at a loss. In this code, #options should wind up fading in, but it doesn’t. The CSS attributes are set, though.
$("#content > p").animate({ opacity: '0' }, function() {
$(this).css("display", "none");
$("#options").css("opacity", "0").show(0, function() {
$("#options").fadeIn();
});
});
The
opacityis still being set as0.You can change the
fadeIn()to…jsFiddle.