I want to change the color of the body whenever I scroll, if I use the jquery css() method, everything works but the thing is I want to put some delay on this effect so I need to animate instead but when I use the following code, the color is not animating, what am I missing?
$("body").animate({
backgroundColor: "white !important"
});
// works well with $("body").css("background-color", "white");
I don't want to use css transitions.