Created
June 19, 2012 04:24
-
-
Save ch1ago/2952274 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hey... | |
$("a.fade-out-and-slide-up").click(function() { | |
$(this).fadeOut('fast', function() { $(this).slideUp('slow'); }); | |
}); | |
I want this to have a smooth, sequential behavior (not parallel). | |
how can I? | |
thanks in advance |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment