Hi all,
I get the error message "Error: 'start.0' is null or not an object" while animating backgroundColor property of an element.
I included the color plugin and able to animate borderTopColor,color etc.
Html part:
<div id="divAnimation" style="">
hello
</div>
Javascript Part:
$("#divAnimation").animate({
color: "red",
backgroundColor:"#123456",
borderTopColor:"black",
borderLeftColor:"green",
borderRightColor:"silver",
borderBottomColor:"yellow"
},
"slow");
When i remove backgroundColor:"#123456", there is no problem.
Any idea? Thanks...