Skip to content

Instantly share code, notes, and snippets.

@moroya
Created April 25, 2013 13:54
Show Gist options
  • Save moroya/5459873 to your computer and use it in GitHub Desktop.
Save moroya/5459873 to your computer and use it in GitHub Desktop.
// first
$(window).queue('myqueue', function() {
console.log('first');
setTimeout(function(){
$(window).dequeue('myqueue');
}, 1000);
});
// second
$(window).queue('myqueue', function() {
console.log('second');
setTimeout(function(){
$(window).dequeue('myqueue');
}, 1000);
});
// first
$(window).queue('myqueue', function() {
console.log('third');
});
// fire!
$(window).dequeue('myqueue');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment