Skip to content

Instantly share code, notes, and snippets.

@jwalsh
Created July 17, 2012 22:44
Show Gist options
  • Save jwalsh/3132628 to your computer and use it in GitHub Desktop.
Save jwalsh/3132628 to your computer and use it in GitHub Desktop.
$('.hidden ul li')
.each(
function(index, element) {
$(element)
.click(
function() {
alert(index);
})
.fadeIn(index * 900)
.css('margin-left', (40 * index) + 'px');
})
.promise()
.done(
function() {
alert("Done");
});​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment