-
-
Save paulnett/2631398 to your computer and use it in GitHub Desktop.
Revisions
-
cowboy created this gist
Mar 2, 2011 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,26 @@ /*! * 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ 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") );