Color animations are not in core jQuery but are in jQuery UI Effects. If
color animations is all you want (from UI Effects), you just need one file:
effects.core.js, which you can get from the UI download build page:

http://ui.jquery.com/download_builder/ (select Effects Core)

or directly here:

http://dev.jquery.com/view/tags/ui/latest/ui/effects.core.js

Here's the documentation:

http://docs.jquery.com/UI/Effects/ColorAnimations

- Richard

Richard D. Worth
http://rdworth.org/

On Fri, Jun 20, 2008 at 11:18 AM, briandichiara <[EMAIL PROTECTED]>
wrote:

>
> At the end of my Ajax request, I'd like to highlight a table row, so
> to speak. Why doesn't this work:
>
> id = 5
>
> success: function(e){
>        $("#address"+id).css("background-color","#F9FFCF");
>        $("#address"+id).animate({backgroundColor:'#FFF'}, 800);
> }
>
> The first line will work, but the 2nd line does not. Any ideas?
>

Reply via email to