Have you tried hiding the div right after you page.replace_html, then using page.visual_effect :Appear?
Here's an example of how I update my comment list with the same effect. page.replace_html 'comments', :partial => 'blog/comment', :collection => @comments page.hide 'comment_' + @comment.id page.visual_effect :Appear, 'comment_' + @comment.id -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

