Skip to content

Instantly share code, notes, and snippets.

@Krknv
Created March 26, 2018 10:08
Show Gist options
  • Save Krknv/3633a15d1080d696577c0c82f3cf221b to your computer and use it in GitHub Desktop.
Save Krknv/3633a15d1080d696577c0c82f3cf221b 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');
});
// https://gist.github.com/randyjensen/6223653
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment