Skip to content

Instantly share code, notes, and snippets.

@randyjensen
Created August 13, 2013 17:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save randyjensen/6223653 to your computer and use it in GitHub Desktop.
Save randyjensen/6223653 to your computer and use it in GitHub Desktop.
jQuery Add Class, Delay, Remove Class
$('.animated-selector').addClass('hidden').stop().delay(500).queue(function(){
$(this).removeClass('hidden');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment