On Mar 3, 2007, at 3:05 PM, Klaus Hartl wrote:

Karl recently wrote about a neat trick to achieve the same without the
pause plugin:
http://www.learningjquery.com/2007/01/effect-delay-trick

Just do this:

target.children("div.middle").html(stuff).pause(2000,
'fx').animate({opacity: 1}, 2000).slideDown("slow");


Thanks for the nod, Klaus. I'm flattered.

Kim, not sure if this is worth mentioning, but Klaus forgot to delete the .pause(2000, 'fx') part from that example. It should look like this:

target.children("div.middle").html(stuff)
  .animate({opacity: 1}, 2000).slideDown("slow");

Cheers,

--Karl
_________________
Karl Swedberg
www.englishrules.com
www.learningjquery.com


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to