I would like to implement something similar to 37Signals's Yellow Fade effect. I am using Jquery 1.3.2 The code (function($) { $.fn.yellowFade = function() { return (this.css({backgroundColor: "#ffffcc"}).animate( { backgroundColor: "#ffffff" }, 1500)); } })(jQuery); and the next call show yellow fade the DOM elment with box id. $("#box").yellowFade(); But it only makes it yellow. No white backgro
{{#tags}}- {{label}}
{{/tags}}