I’m trying to use a jQuery color animation plugin http://www.bitstorm.org/jquery/color-animation/. When we call it and pass it, say #FFFF00 (yellow), we see it change to yellow and fade away. But it never quite fades back to the element’s original background color, which is white #FFFFFF. After doing a DOM inspection, I noticed that the elements ended up with a variety of styles added to it, such as:
style="background-color: rgb(255, 255, 215);style="background-color: rgb(255, 255, 149);style="background-color: rgb(255, 255, 207);
What do we need to do to get the plugin to work in such a way that at the end, the background color is the original color.
The problem was with the plugin. The author has fixed the problem.