Created
March 2, 2011 02:02
-
-
Save cowboy/850322 to your computer and use it in GitHub Desktop.
jQuery seq: execute code sequentially, for each selected element.
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
/*! | |
* jQuery seq - v0.1 - 03/1/2011 | |
* http://benalman.com/ | |
* | |
* Copyright (c) 2011 "Cowboy" Ben Alman | |
* Dual licensed under the MIT and GPL licenses. | |
* http://benalman.com/about/license/ | |
*/ | |
(function($){ | |
$.fn.seq = function( fn, done ) { | |
var elems = this; | |
if ( elems.length ) { | |
fn.call( elems[0], function() { | |
$.fn.seq.call( elems.slice(1), fn, done ); | |
}); | |
} else if ( done ) { | |
done(); | |
} | |
return elems; | |
}; | |
})(jQuery); |
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
elems.hide().seq(function(next){ | |
$(this).fadeIn( 100, next ); | |
}); | |
elems.hide().seq(function(next){ | |
$(this).fadeIn( 100, next ); | |
}, function(){ | |
console.log( "done!" ); | |
}); | |
(function loopy(elems){ | |
elems.hide().seq(function(next){ | |
$(this).fadeIn( 100, next ); | |
}, function(){ | |
loopy( elems.slice(1) ); | |
}); | |
})( $("li") ); |
Possible todos:
- pass
i
,elem
into callback (likeeach
) - return a deferred (is this even sane?)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A very basic sample animation.
A sample animation (courtesy of simplestick, who created the original).