Why isn\'t this piece of code working?
$(\"#TextOne\").animate({ color: \"#FFFF00\" }, 800);
When i call it on a button click it does nothing.
Try the following.
define a css color like this.
.anim-color { color:##FFFF00; }
animate on a class like this.
$("#TextOne").animate({ className: 'anim-color' }, 800);