[jQuery] Re: Question Animating and Removing Elements
Hi Karl, Thanks for the response. It works great. Thanks, Stephen
[jQuery] Re: Question Animating and Removing Elements
Hi Stephen, Use a callback function in the second argument of slideUp(). For example: $('.delete').click(function() { $('someElement').slideUp(400, function() { $(this).remove(); }); }); --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 1, 2009,