Skip to content

Instantly share code, notes, and snippets.

@nini
Created June 15, 2015 10:05
Show Gist options
  • Save nini/dc001d2973f75b332f6e to your computer and use it in GitHub Desktop.
Save nini/dc001d2973f75b332f6e to your computer and use it in GitHub Desktop.
jQuery delays + queue for autoclose example
button = $('button');
if(button.hasClass('close')) {
button.delay(1000).queue(function() {
$(this).click().dequeue();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment