Skip to content

Instantly share code, notes, and snippets.

@ch1ago
Created June 19, 2012 04:24
Show Gist options
  • Save ch1ago/2952274 to your computer and use it in GitHub Desktop.
Save ch1ago/2952274 to your computer and use it in GitHub Desktop.
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