/ Published in: jQuery
Understanding callbacks in jQuery animations
Expand |
Embed | Plain Text
$('div.old').fadeOut(300, function() { $(this).remove(); });
You need to login to post a comment.
handsomegenius on 02/19/12
2 people have marked this snippet as a favorite
Understanding callbacks in jQuery animations
$('div.old').fadeOut(300, function() { $(this).remove(); });
You need to login to post a comment.