Skip to content

Instantly share code, notes, and snippets.

@karbassi
Created January 9, 2010 11:10
Show Gist options
  • Save karbassi/272855 to your computer and use it in GitHub Desktop.
Save karbassi/272855 to your computer and use it in GitHub Desktop.
$('#something')
.queue(function(){
$(this).addClass("turned-on");
$(this).dequeue();
})
.delay(2000)
.queue(function(){
$(this).removeClass("turned-on");
$(this).dequeue();
})
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment