Skip to content

Instantly share code, notes, and snippets.

@soh335
Created August 31, 2012 06:02
Show Gist options
  • Save soh335/3549510 to your computer and use it in GitHub Desktop.
Save soh335/3549510 to your computer and use it in GitHub Desktop.
var d = $.Deferred();
$(".track-queue").each( function(i, e) {
d.then(
function(){ e.click( function(){ d.resolve(); }) }
)
});
d.resolve();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment