I'm using the .animate function from the jquery.color.js library to highlight a label on an ASP.Net page when the value of the label changes. It works great in I.E. 7.0, but in I.E. 6.0 it makes a button control on the page change positions. Anyone know how to fix this problem?
Here is the snippet of the jquery code that causes the problem, when the .animate function is run, that's when a button on the page moves position.
ParentItem.text("$" + itemCost);
ParentItem.stop(true);
ParentItem.animate({ backgroundColor: "#FFFF80"
}, 300)
.animate({ backgroundColor: 'white' }, 1250);